Android Question google play and revisions

merlin2049er

Well-Known Member
Licensed User
Longtime User
Just wondering... If I post an app with db files, and other files in the assets. When I go to revise the app and change the revision #, will the android os wipe everything that's install (for that app) and do a clean install of the new app (with the new files, etc...)
 

merlin2049er

Well-Known Member
Licensed User
Longtime User
Thanks, so instead of using if file exists then copy. I should be copying at all times. I want a fresh copy per installation / upgrade.

B4X:
'If File.Exists(File.DirDefaultExternal, "tour.db") = 'False Then
'    File.Copy(File.DirAssets, "tour.db", 'File.DirDefaultExternal, "tour.db")
'    End If

File.Copy(File.DirAssets, "tour.db", File.DirDefaultExternal, "tour.db")
 
Upvote 0

merlin2049er

Well-Known Member
Licensed User
Longtime User
Right , the only data the user will enter is some contact info... (to start with, maybe more later on...)

oh yeah, and the feedback table. But these are empty after each submission.
 
Last edited:
Upvote 0
Top