RoomAsset icon indicating copy to clipboard operation
RoomAsset copied to clipboard

A helper library to help using Room with existing pre-populated database [DEPRECATED].

Results 7 RoomAsset issues
Sort by recently updated
recently updated
newest added

In the same vein as a couple of the other issues, I'm encountering a runtime error when attempting to open my database for the first time. However, my issue is...

I have a stored sqlite file from an old android app that I am putting into a new android app. Part of the upgrade process I am upgrading it to...

i try to update my db file with new data, and update database version to 3. but the data is still from the old db. how to achieve this?

bug

With this error: constructor RoomOpenHelper in class RoomOpenHelper cannot be applied to given types; required: DatabaseConfiguration,Delegate,String found: DatabaseConfiguration,,String,String reason: actual and formal argument lists differ in length and by this...

Hello! Trying to create pre-populated database. My Database `@Database(entities = {Series.class}, version = 2, exportSchema = false)` ... `public static AppDatabase getDatabase(Context context) {` ` if (INSTANCE == null) {`...

help wanted

I was having an issue with RoomAsset not migrating the contents of my pre-loaded database to the usable Room database, so I dug through the code and found what I...