Android Question android permission questions

Hi there.
Previously, when installing the app, it would request the necessary permissions for proper functionality. Now, when installing on Android 16, it no longer requests the necessary permissions, and they have to be granted manually in the device settings. In other words, by default, no permissions are granted. Is this the intended behavior? Is this specific to certain Android versions? Thanks in advance.
 

Sagenut

Expert
Licensed User
Longtime User
An example project to test would be a great help.
Are you using the latest B4A version?
Is everything updated and installed correctly?
Is Manifest targeting SDK 36?
 
Upvote 0
I m working with latest B4A version. While looking at my manifest, I found these lines
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="35"/>
I think something isn't right here. What do you think?
Tks for reply
 
Upvote 0
Top