Stack Overflow archive
0 score

Link directly to google play app

score
0
question views
137
license
CC BY-SA 3.0

Please see Linking to Your Products. Most likely, you are using the website URL. Try the following intent below:

java
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=your.package.name"));
startActivity(intent);

You should also check if com.android.vending is installed before starting that intent.

Originally posted on Stack Overflow. Public user contributions are licensed under Creative Commons Attribution-ShareAlike.