Contributions

Article
If you are using SQLite database in your app, that means you are using SQLite API to access the database. To get advantages that Room ORM offer, you can migrate to Room from SQLite API easily reusing existing SQLite database without losing data with database migration.

Or if you are using Room but want to alter table, just follow migration process to do so.

This article explains database migration with ROOM