The following code errors in the ApplicationModule.class
@Provides
@Singleton
public SQLiteDatabase database() {
return FlowManager.getDatabase(DemoDatabase.NAME).getWritableDatabase();
}
with 'Required SQLiteDatabase, got DatabaseWrapper
am I missing something?
Cheers