Android - different App Info activities when using intents

Viewed 18

When I open the App Info activity manually, there are 3 dots on the upper-right corner: enter image description here

Which open the Restricted Settings menu(Android 13):

enter image description here

But opening the activity with the following code:

       intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
       Uri uri = Uri.fromParts("package", sApp.getApplicationContext().getPackageName(), null);
       intent.setData(uri);

enter image description here

Doesn't include the side menu.

0 Answers
Related