Is there right way to get Url to android market app ? I read some answer here but I did not success to get any ?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
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.
the apps are hosted on their own sites. you can download the apps from your android mobile by visiting the market place.
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.
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>
Example for Apps details page:
If you go https://market.android.com/details?id=com.somecompany.someapp its redirect to google play store https://play.google.com/store/apps/details?id=com.somecompany.someapp
https://market.android.com/details?id=com.somecompany.someapp
replace com.somecompany.someapp with your app package