I'm trying to open playstore app but I don't want to open any app in it instead I just want to open playstore's main/home page.
For that, I tried this:
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://")));
} catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://")));
}
but this code is not working for me.
How can I open the playstore's main/home page?