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);
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.
You can simply call market://dev?id=xxx e.g.:
market://dev?id=5700313618786177705
I hope, this suits your needs!
Best, Jacko
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With