0

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?

1 Answer 1

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