use of com.raizlabs.android.dbflow.config.FlowConfig in project pictureapp by EyeSeeTea.
the class EyeSeeTeaApplication method onCreate.
@Override
public void onCreate() {
super.onCreate();
Log.d(TAG, "onCreate");
Fabric.with(this, new Crashlytics());
PreferencesState.getInstance().init(getApplicationContext());
FlowConfig flowConfig = new FlowConfig.Builder(this).addDatabaseHolder(EyeSeeTeaGeneratedDatabaseHolder.class).build();
FlowManager.init(flowConfig);
}
Aggregations