It seems that without using the intent nothing will work.
To access the application settings page I use:
B4X:
Private Sub OpenAppSettingsPage
Dim in As Intent
in.Initialize("android.settings.APPLICATION_DETAILS_SETTINGS", "package:" & Application.PackageName)
Try
StartActivity(in)
Catch
Log(LastException)
End Try
End Sub
Please tell me how to supplement the intent to go to permissions and contacts?
After checking many messages about permissions, I realized that it is impossible to remove the installed permission without deleting the application and reinstalling it.
If you have a different opinion, you can try to do it in the attached example.