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.goo
try this
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("market://details?id=com.example.android")); startActivity(intent);