Search code examples
androidandroid-room

Android: Room: no encryption and security?


I am using OrmLite over SQLite with SQLCipher to encrypt a database on Android. Is there a way to cipher a Room database?


Solution

  • Room by default store data in the app's internal storage which any root user can access.

    if you need some security you need to use encryption lib like this cwac-saferoom.