Following on from this link https://www.b4x.com/android/forum/t...roid-permission-write_external_storage.72435/, I encountered the same issue when uploading my apk and also resolved it the same way as in the post. I'd like to know if this is the actual solution though (removing the code below)? Will users running sdk < 18 still be able to use the app if we remove that code from the manifest?
B4X:
'AddManifestText(
'<uses-permission
' android:name="android.permission.WRITE_EXTERNAL_STORAGE"
' android:maxSdkVersion="18" />
')