Reputation:
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
Reputation: 2114
launchIntent = new Intent(Intent.ACTION_VIEW);
launchIntent.setData(Uri.parse("market://details?id=" + packageName));
startActivity(launchIntent);
Upvotes: 2