Hi,
Pls any suggestions as to why I am having this issue?
My app creates a folder, downloads (ftp) a db file from a sever to the folder and display data based on current or chosen date.
The app works fine on my device in all modes during development but when I publish it in play store, I get an error --see attached image
I am noticing that in development --the app creates desired folder and downloads the db file to the folder
but when published, the app is not creating the folder --thus nowhere to download them db file to
Any reason why app works in development but not in play store?
The first thing i do in Activity_Create(FirstTime As Boolean)
Pls any suggestions?
Pls any suggestions as to why I am having this issue?
My app creates a folder, downloads (ftp) a db file from a sever to the folder and display data based on current or chosen date.
The app works fine on my device in all modes during development but when I publish it in play store, I get an error --see attached image
I am noticing that in development --the app creates desired folder and downloads the db file to the folder
but when published, the app is not creating the folder --thus nowhere to download them db file to
Any reason why app works in development but not in play store?
The first thing i do in Activity_Create(FirstTime As Boolean)
B4X:
If File.Exists(File.DirInternal, "/Folder/") = False Then
File.MakeDir(File.DirInternal, "/Folder/")
End If
Pls any suggestions?