I want to upload my sqlite DB file to DropBox. But before that I need to get the sqlite Db file in code. How can I do this on any device? I checked on this link, and it says that the user needs root permissions to access the database.
So in short:
How can I access my sqlite database with non rooted devices? eg File f = new File("path_to_db_file");
If that approach is impossible, how can I save my app database in a place that I will be able to gain access to it?
Please let me know if I can explain anything. Thank you in advance