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

Which open the Restricted Settings menu(Android 13):
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);
Doesn't include the side menu.

