I want to open the screen like this: Settings -> Apps -> Select an app -> Open App permissions screen.
Currently I used this code. It lets me open the AppInfo screen. But I don't know how to select the App permissions screen.
Intent intent = new Intent();
intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
Uri uri = Uri.fromParts("package", APP_PACKAGE_NAME, null);
intent.setData(uri);
startActivity(intent);
Some devices running MIUI have the app permissions screen.
Just add this code and call applyMiuiPermission() method
RomUtils.Java
Try this solution