Skip to main content
Improved the wording in the question, add a language identifier to the code block and improved the formatting in the code block.
Source Link
Adil Hussain
  • 32.6k
  • 24
  • 127
  • 170

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?

Android M Permission Screen

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.

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?

Android M Permission Screen

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.

I have a question regarding the new Android 6.0 (Marshmallow) release.

Is it possible to display the "App Permissions" screen for a specific app via an Intent or something similar?

Android M Permission Screen

It is possible to display the app's "App Info" screen in Settings with the following code:

startActivity( new Intent( android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS, Uri.fromParts("package", getPackageName(), null) ) ); 

Is there an analogous solution for directly opening the app's "App Permissions" screen?

I already did some research on this but I was not able to find a solution.

Second iteration - it is not the literal name of it.
Link
Peter Mortensen
  • 31.4k
  • 22
  • 110
  • 134

How can I programmatically open the Permission Screenpermission screen for a specific app on Android 6.0 (Marshmallow)?

Active reading [<https://en.wikipedia.org/wiki/Android_Marshmallow>]. Removed meta information (this belongs in comments).
Source Link
Peter Mortensen
  • 31.4k
  • 22
  • 110
  • 134

How tocan I programmatically open the Permission Screen for a specific app on Android Marshmallow6.0 (Marshmallow)?

I have a question regarding the new Android Marshmallow6.0 (Marshmallow) release:

Is it achievable to display the Permission Screenpermission screen for a specific app via an Intent or something similar?

Android M Permission Screen

It's possible to display the app settings with the following code - is there an analog solution for directly opening the Permission Screenpermission 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 - I would appreciate every help!.

How to programmatically open the Permission Screen for a specific app on Android Marshmallow?

I have a question regarding the new Android Marshmallow release:

Is it achievable to display the Permission Screen for a specific app via an Intent or something similar?

Android M Permission Screen

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 - I would appreciate every help!

How can I programmatically open the Permission Screen for a specific app on Android 6.0 (Marshmallow)?

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?

Android M Permission Screen

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 Protected by Pavneet_Singh
added 11 characters in body
Source Link
Loading
Source Link
Loading