user2796056
user2796056

Reputation:

How to open play store app direclty from android app and search a package

Is there any way to open Google Play store app directly from my app and search a package that I need to pass from my app?

Upvotes: 0

Views: 157

Answers (1)

nizammoidu
nizammoidu

Reputation: 2114

launchIntent = new Intent(Intent.ACTION_VIEW);
launchIntent.setData(Uri.parse("market://details?id=" + packageName));
startActivity(launchIntent);

Upvotes: 2

Related Questions