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

I have open the Google Play store using the following code Intent i = new Intent(android.content.Intent.ACTION_VIEW); i.setData(Uri.parse(“https://play.google.com/store/apps/details?id=my packagename “)); startActivity(i);. But it shows me a Complete Action View as to select the option (browser/play store). I need to open the application in Play Store directly. 25 s 25 You can do this using the market:// … Read more