I have a question regarding the new Android 6.0 (Marshmallow) release:
Is it achievable to display the permission screen for a specific app via an Intent or something similar?
It's possible to display the app settings with the following code - is there an analog solution for directly opening the permission screen?
startActivity(new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
Uri.fromParts("package", getPackageName(), null)));
I already did some research on this, but I wasn't able to find a proper solution.
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…