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?

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62

1 Answers1

2
launchIntent = new Intent(Intent.ACTION_VIEW);
launchIntent.setData(Uri.parse("market://details?id=" + packageName));
startActivity(launchIntent);
nizammoidu
  • 2,074
  • 1
  • 14
  • 14