Hello,
I want to give a user only access to the settings for specific things on the phone:
Dim StartIntent As Intent
StartIntent.Initialize("android.settings.WIFI_SETTINGS", "")
StartActivity(StartIntent)
up to android 6 that worked fine.
However, starting from Android 7, having access to a specific screen in the settings allows the user also to go back to the "parent" setting and so on so that in fact, the user has access to all settings.
is there a way to avoid this behavior?
I want to give a user only access to the settings for specific things on the phone:
Dim StartIntent As Intent
StartIntent.Initialize("android.settings.WIFI_SETTINGS", "")
StartActivity(StartIntent)
up to android 6 that worked fine.
However, starting from Android 7, having access to a specific screen in the settings allows the user also to go back to the "parent" setting and so on so that in fact, the user has access to all settings.
is there a way to avoid this behavior?