I have a question regarding the new Android 6.0 (Marshmallow) release:.
Is it achievablepossible to display the permission screen"App Permissions" screen for a specific app via an Intent or something similar?
It'sIt is possible to display the app settingsapp's "App Info" screen in Settings with the following code - is:
startActivity( new Intent( android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS, Uri.fromParts("package", getPackageName(), null) ) ); Is there an analoganalogous solution for directly opening the permissionapp's "App Permissions" 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'twas not able to find a proper solution.
