How to open google play console account with all apps
This code is work on android mobile and also work on emulator. If play store is installed then all apps are show on google play store otherwise apps show on web browser.
First of all copy the id of your account. For example this is your store link https://play.google.com/store/apps/developer?id=Adab+Apps+Collection
In this link id is ” Adab+Apps+Collection “ but this id is show on browser so this id paste in browser string but for google play store remove plus sign ” Adab Apps Collection ” paste this id in playstore string.
String browser = "Adab+Apps+Collection"; String playStore = "Adab Apps Collection"; Uri uri1 = Uri.parse("market://search?q=pub:" + playStore); Intent goToMarket1 = new Intent(Intent.ACTION_VIEW, uri1); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { goToMarket1.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_NEW_DOCUMENT | Intent.FLAG_ACTIVITY_MULTIPLE_TASK); } try { startActivity(goToMarket1); } catch (ActivityNotFoundException e) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/developer?id=" + browser))); }