my manifest code like this:
but i can't get sd-card write permission, i create path , no error happen ,but the path not exist, why?
B4A:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="29"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="29" />
)
AddPermission(android.permission.WRITE_INTERNAL_STORAGE)
AddPermission(android.permission.WRITE_EXTERNAL_STORAGE)
AddPermission(android.permission.WRITE_MEDIA_STORAGE)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Translucent")
'SetApplicationAttribute(android:theme, "@android:style/Theme.White")
'End of default text.
' 28 - Non-ssl (non-https) communication is not permitted by default.
' It can be enabled in B4A v9+ by adding this line to the manifest editor:
CreateResourceFromFile(Macro, Core.NetworkClearText)
but i can't get sd-card write permission, i create path , no error happen ,but the path not exist, why?
B4A:
If File.Exists(File.DirInternal, "/Pldata") = False Then
File.MakeDir(File.DirInternal, "Pldata")
End If