Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Avoid crashes due to SQLite support in older Android versions for debug builds

Cette révision appartient à :
arkon 2022-07-16 20:54:27 -04:00
Parent 3192d47837
révision 459b369feb

Voir le fichier

@ -41,7 +41,7 @@ class AppModule(val app: Application) : InjektModule {
schema = Database.Schema,
context = app,
name = "tachiyomi.db",
factory = if (BuildConfig.DEBUG && Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
factory = if (BuildConfig.DEBUG && Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
// Support database inspector in Android Studio
FrameworkSQLiteOpenHelperFactory()
} else {