Nezir
Nezir

Reputation: 6915

Android Market application Url?

Is there right way to get Url to android market app ? I read some answer here but I did not success to get any ?

Upvotes: 13

Views: 37756

Answers (7)

emmby
emmby

Reputation: 100464

Bryan's market URL will work, but I prefer:

market://details?id=com.example.your.package

since it will take you directly to the details page.

Upvotes: 42

No Emails
No Emails

Reputation: 81

This should work as a standard HTML anchor tag:

https://market.android.com/search?q=pname:[name of your package here]

IE:

https://market.android.com/search?q=pname:com.google.earth

Similar to Bryan Denny's answer on 10/29/2010, but in regular URL format, and not the special market:// style link.

Upvotes: 7

koljaTM
koljaTM

Reputation: 10262

See http://developer.android.com/distribute/googleplay/promote/linking.html

Basically, from a web site use:

http://play.google.com/store/apps/details?id=<package_name>

From an android app use:

market://details?id=<package_name>

Upvotes: 4

androidzoneus
androidzoneus

Reputation: 5

Example for Apps details page:

If you go

https://market.android.com/details?id=com.somecompany.someapp 

it redirects to the Google Play store

https://play.google.com/store/apps/details?id=com.somecompany.someapp

Upvotes: 0

TheDeuce
TheDeuce

Reputation: 11

https://market.android.com/details?id=com.somecompany.someapp

replace com.somecompany.someapp with your app package

Upvotes: 1

Bryan Denny
Bryan Denny

Reputation: 27596

For phones:

market://search?q=pname:[name of your package here]

For example:

market://search?q=pname:net.mandaria.tippytipper

For non-phones: You'll need to link to an Android Market aggregator such as appbrain:

http://www.appbrain.com/app/net.mandaria.tippytipper

Upvotes: 11

Vaibhav
Vaibhav

Reputation: 6998

the apps are hosted on their own sites. you can download the apps from your android mobile by visiting the market place.

Upvotes: 1

Related Questions