Android Question Sync App Data (SQLite, Cloud solution)

mw71

Active Member
Licensed User
Longtime User
Hi,

I want to synchonize the app (SQLite DB) data, if the user want that.
There I have a problem, how and where. Bluetooth or something like that isn´t the optimal way for me, I want to do it by a cloud.
I read a solution with dropbox but each user need a account there.
The best solution I think is to do this with the Google account, which is connected with the smartphone. But I don´t find something for that. Is it possible at all? If yes, I would be happy if someone can give me an instruction or an example.
Also if someone has an other idea or an example how I can do that. I´ll be very gratefull for suggestions.



Thanks
 

parijs

Active Member
Licensed User
Longtime User
The ahaShare lib


B4X:
    Dim Share As ahaShare   
       
    Share.Initialize(Me, "Share")
    Share.AddFile(File.DirRootExternal, "Perel/pere.db")
    Share.Share("Subject","Send from")
 
Upvote 0

mw71

Active Member
Licensed User
Longtime User
mny thanks,

Erel, upload and download to/from FirebaseStorage works fine.
how i can get a file List from a directory?
 
Upvote 0
Top