Hi Forum
My B4A application worked perfectly until I added an interstitiate AD before I open a file in Dirinternal.
Each time the Ad is displayed, the file disappears in DirInternal (!).
If I comment the "IAd.show" command, the file is kept (!)
Any idea what could be the reason ?
My B4A application worked perfectly until I added an interstitiate AD before I open a file in Dirinternal.
Each time the Ad is displayed, the file disappears in DirInternal (!).
If I comment the "IAd.show" command, the file is kept (!)
Any idea what could be the reason ?
B4X:
'Download file from Dropbox when "Activity_create.FirstTime=True"
dbx.Download("/catalog.db",File.DirInternal,"catalog.db")
(...)
'Display Interstitiate when ready
If IAd.Ready Then
IAd.Show
End If
If File.Exists(File.DirInternal,"catalog.db")=False Then
Log("Bug : The file disappeared !")
end if
'As a result, this instruction crashes with IAd.show due to file removed
sql2.Initialize(File.DirInternal,"catalog.db",False)