views:

54

answers:

1

We are currently developing an android app for our client. Client would like to include a barcode on a it’s mailing about the Android app, such that when the user scans the barcode, s/he will be taken directly to the application on the Android marketplace for download. To do this, client will need to know the exact URL on the marketplace, but we are not sure if a URL can be reserved in advance of actually putting the app on the market

+2  A: 

The URL is composed of the application's namespace. The way to do it would be to put together any sort of app with the namespace (com.thecompany.theapp) and get it uploaded. You don't necessarily need to make it available to the public yet by publishing it, but getting it uploaded should claim the space, and you'll know what the URL will be when it is ready.

With that, as long as the combination of the company name and application name are reasonably unique, there's really no reason to worry that someone else would pop up with the same namespace and take it out from under you, so reserving is probably not necessary.

Blumer
Thank you my friend. Great answer.
Pilu
@Pilu so please accept Blumer answer
Kevin Gaudin