What happens to a Sqlite database when app is removed

前端 未结 5 1742
执念已碎
执念已碎 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:28

    The database is located in /data/data/app.package.name/databases . You can access this folder only on the emulator or on a rooted device (with a file explorer with a Super user right for example).

    When you delete an app all the relative datas are deleted (databases included)

提交回复
热议问题