Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open developer page on Google Play Store (market://)

Recently, Google Play lets developers create developer page.

Here is the example : https://play.google.com/store/apps/dev?id=5700313618786177705

I try to find developer page Uri link (market://...) that I can use but I can't find it on Android Developer page. (http://developer.android.com/distribute/tools/promote/linking.html)

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://..."));
startActivity(intent);
like image 672
Saran Avatar asked Aug 15 '15 21:08

Saran


2 Answers

This works for me:

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/dev?id=7809285959465313029")));

Using market URI does not work for me.

like image 66
Lim Thye Chean Avatar answered Sep 24 '22 13:09

Lim Thye Chean


You can simply call market://dev?id=xxx e.g.:

market://dev?id=5700313618786177705

I hope, this suits your needs!

Best, Jacko

like image 21
Jacko0815 Avatar answered Sep 25 '22 13:09

Jacko0815