Again my excuses, Agraham, I am very much willing to try but I have got some other things to look after that do not have anything to do with progamming but with cooking, walking my dog and looking after my spouse who is not well after an operation.
So, here we are: Your code snipped has been included at the end of the create_activity sub. The log file after the call "wait for" returns "false" which is obviously not permitting write access.
Dim rp As RuntimePermissions
Dim Result As Boolean
rp.CheckAndRequest(rp.PERMISSION_WRITE_EXTERNAL_STORAGE) ' Implicit read capability if granted
Wait For Activity_PermissionResult (Permission As String, Result As Boolean)
Log("PERMISSION_WRITE_EXTERNAL_STORAGE: "&Result)
I have not yet been able to listen to Erels tutorial, which I will do tomorrow, maybe I have to add other things for instance in the mainifest file which looks like this:
'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: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="28"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
Please have some patience with old guys!