What happens to a Sqlite database when app is removed

前端 未结 5 1748
执念已碎
执念已碎 2020-12-15 07:11

I\'m new to Android programming and trying to wrap my head around this just to make myself clear about how things work.

When creating Sqlite databases in an Android

5条回答
  •  不知归路
    2020-12-15 07:39

    Unless stated otherwise (by you), apps keep their datas under /data/data/, and SQLite-databases are in /data/data//databases. When uninstalling an app, the whole directory tree of /data/data/ will be deleted, including your databases.

提交回复
热议问题