How can I save the data in sqlite file when uninstall an app? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

How can I save the data in sqlite file when uninstall an app?

I have an database file made by Sqlite Studio and use it in an android app. When I uninstall app, the data I insert into database by using app was deleted, but the data in initial sqlite file still have. When I insert into database it not appear in sqlite file but when I select it still have.

2nd Sep 2021, 10:03 AM
tiennl
tiennl - avatar
1 Réponse
0
one solution is to provide an import and export function for your database. export to an external folder that does not get deleted when you Uninstall the app , or to a cloud storage provider. another may be, save the data outside of the app install folder, outside of(/sdcard/Android/data/com.xxxxx.xxz) or (/data/data/com.xxxx.xxxx) although from Android 11 getting permission for external folders is getting complicated.
2nd Sep 2021, 12:24 PM
Bahhaⵣ
Bahhaⵣ - avatar