How to open the Google Play Store directly from my Android application? How to open the Google Play Store directly from my Android application? android android

How to open the Google Play Store directly from my Android application?


You can do this using the market:// prefix.

Java

final String appPackageName = getPackageName(); // getPackageName() from Context or Activity objecttry {    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));} catch (android.content.ActivityNotFoundException anfe) {    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName)));}

Kotlin

try {    startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=$packageName")))} catch (e: ActivityNotFoundException) {    startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=$packageName")))}

We use a try/catch block here because an Exception will be thrown if the Play Store is not installed on the target device.

NOTE: any app can register as capable of handling the market://details?id=<appId> Uri, if you want to specifically target Google Play check the Berťák answer


Many answers here suggest to use Uri.parse("market://details?id=" + appPackageName)) to open Google Play, but I think it is insufficient in fact:

Some third-party applications can use its own intent-filters with "market://" scheme defined, thus they can process supplied Uri instead of Google Play (I experienced this situation with e.g.SnapPea application). The question is "How to open the Google Play Store?", so I assume, that you do not want to open any other application. Please also note, that e.g. app rating is only relevant in GP Store app etc...

To open Google Play AND ONLY Google Play I use this method:

public static void openAppRating(Context context) {    // you can also use BuildConfig.APPLICATION_ID    String appId = context.getPackageName();    Intent rateIntent = new Intent(Intent.ACTION_VIEW,        Uri.parse("market://details?id=" + appId));    boolean marketFound = false;    // find all applications able to handle our rateIntent    final List<ResolveInfo> otherApps = context.getPackageManager()        .queryIntentActivities(rateIntent, 0);    for (ResolveInfo otherApp: otherApps) {        // look for Google Play application        if (otherApp.activityInfo.applicationInfo.packageName                .equals("com.android.vending")) {            ActivityInfo otherAppActivity = otherApp.activityInfo;            ComponentName componentName = new ComponentName(                    otherAppActivity.applicationInfo.packageName,                    otherAppActivity.name                    );            // make sure it does NOT open in the stack of your activity            rateIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);            // task reparenting if needed            rateIntent.addFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);            // if the Google Play was already open in a search result            //  this make sure it still go to the app page you requested            rateIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);            // this make sure only the Google Play app is allowed to            // intercept the intent            rateIntent.setComponent(componentName);            context.startActivity(rateIntent);            marketFound = true;            break;        }    }    // if GP not present on device, open web browser    if (!marketFound) {        Intent webIntent = new Intent(Intent.ACTION_VIEW,            Uri.parse("https://play.google.com/store/apps/details?id="+appId));        context.startActivity(webIntent);    }}

The point is that when more applications beside Google Play can open our intent, app-chooser dialog is skipped and GP app is started directly.

UPDATE: Sometimes it seems that it opens GP app only, without opening the app's profile. As TrevorWiley suggested in his comment, Intent.FLAG_ACTIVITY_CLEAR_TOP could fix the problem. (I didn't test it myself yet...)

See this answer for understanding what Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED does.


Go on Android Developer official link as tutorial step by step see and got the code for your application package from play store if exists or play store apps not exists then open application from web browser.

Android Developer official link

https://developer.android.com/distribute/tools/promote/linking.html

Linking to a Application Page

From a web site: https://play.google.com/store/apps/details?id=<package_name>

From an Android app: market://details?id=<package_name>

Linking to a Product List

From a web site: https://play.google.com/store/search?q=pub:<publisher_name>

From an Android app: market://search?q=pub:<publisher_name>

Linking to a Search Result

From a web site: https://play.google.com/store/search?q=<search_query>&c=apps

From an Android app: market://search?q=<seach_query>&c=apps