Hi all
How can I programmatically open the permission screen for my app?
The code below opens the settings page for the app, but I just want the permission part.
thanks
How can I programmatically open the permission screen for my app?
The code below opens the settings page for the app, but I just want the permission part.
B4X:
Dim in As Intent
in.Initialize("android.settings.APPLICATION_DETAILS_SETTINGS", $"package:${Application.PackageName}"$)
StartActivity(in)
thanks