My app is simply a data entry app, in which user can type in information like name, dob, address etc.
The app needs to be able to run without an internet.
Therefore I simply used a Sqlite3 to store data in the app. In the end of the day, I connect to the internet and email the sqlite3.db file to my email address.
There is a problem here:
when I email the .db file, I have to use a Pop-up email client. In which user can see the .db file. So anyone can download it or email it to another person in the pop up. This is not very secure, because the sqlite3.db file can’t be encrypted in Corona.
Is there any better ways to do this?