New Android permissions model for Android 6 in AIR SDK 24. Is there a table which lists all possible classes that can ask for Android permissions?
Hello, I've read that there's a new API in AIR 24 to ask for permissions in Android 6.0 instead on just having them in the app descriptor. But the Release Notes for AIR SDK 24 only has an example for Camera permissions:
http://fpdownload.macromedia.com/pub/labs/flashruntimes/shared/air24_flashplayer24_releasenotes.pdf
So how do I ask for permissions in an app that needs the following?
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
What classes do I have to access to ask for those? Is there a complete list of classes that can ask for permissions?
Thanks and best regards.
