I want to open Play store Setting page.though I know how to open play store
final String appName = "";
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+appName)));
} catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id="+appName)));
}
but I want to open play store setting(to redirect user to auto update option) page that look like this image

How to do this.Is there any intent for this?
You can do that using this :
try {
Intent intent = new Intent("com.google.android.finsky.activities.SettingsActivity");
intent.setClassName("com.android.vending", "com.google.android.finsky.activities.SettingsActivity");
startActivity(intent);
}
catch(Exception e) {
e.printStackTrace();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With