Hi Erel
Just upgraded to v9.
I have an app that produces an apk nicely. It relies heavily on saving text files to File.DirRootExternal and File.DirDefaultExternal.
I have done some checking, especially https://www.b4x.com/android/forum/t...roid-permission-write_external_storage.90457/
Every time I try to upload to google play console I get the error mentioned above. ie:
"Upload failed
Duplicate declarations of permission android.permission.WRITE_EXTERNAL_STORAGE with different maxSdkVersions.
Your app currently targets API level 23 and must target at least API level 26 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 26. Learn how."
My manifest begins:
"AddManifestText(
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="23"/>
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />"
Do you have any suggestions please how to overcome this?
Thanks.
Just upgraded to v9.
I have an app that produces an apk nicely. It relies heavily on saving text files to File.DirRootExternal and File.DirDefaultExternal.
I have done some checking, especially https://www.b4x.com/android/forum/t...roid-permission-write_external_storage.90457/
Every time I try to upload to google play console I get the error mentioned above. ie:
"Upload failed
Duplicate declarations of permission android.permission.WRITE_EXTERNAL_STORAGE with different maxSdkVersions.
Your app currently targets API level 23 and must target at least API level 26 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 26. Learn how."
My manifest begins:
"AddManifestText(
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="23"/>
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />"
Do you have any suggestions please how to overcome this?
Thanks.