There have been some vague posts about permissions on android 6.0 but there were no real answers. Also corona documentation that does mention permissions doesn’t really go into much detail for android 6.0.
Basically or situation is that after updating one of our devices to android 6.0, when we install our app, the storage permission does not get automatically switched on, even though we ask for the permission in the build.settings.
Only by going into the device settings > application > manually switching storage permission on will the app function properly.
Can corona provide more specific documentation on how to correctly use permissions in android 6.0?
In our case vungle ads don’t work when the storage permission is off.
Vungle suggested…
<uses-permission android:name=“android.permission.WRITE_EXTERNAL_STORAGE” android:maxSdkVersion=“18” />
…but i have not seen any way to set the maxSDKVersion for individual permissions in corona. Note: Once storage permission is manually switched on vungle ads works fine.