Downgrade requery sqlite

idk why but it upgrading to java 17 has screwed it. should close #1619
This commit is contained in:
Jays2Kings 2023-10-11 10:21:54 -07:00
parent d58c623862
commit 2c1972cab9
3 changed files with 5 additions and 2 deletions

View file

@ -227,7 +227,7 @@ dependencies {
// Database
implementation("androidx.sqlite:sqlite-ktx:2.3.1")
implementation("com.github.requery:sqlite-android:3.43.0")
implementation("com.github.requery:sqlite-android:3.39.2")
implementation("com.github.inorichi.storio:storio-common:8be19de@aar")
implementation("com.github.inorichi.storio:storio-sqlite:8be19de@aar")
@ -301,6 +301,9 @@ tasks {
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.freeCompilerArgs += listOf(
"-Xcontext-receivers",
"-opt-in=kotlin.Experimental",
"-opt-in=kotlin.RequiresOptIn",
"-opt-in=kotlin.ExperimentalStdlibApi",
"-opt-in=androidx.compose.foundation.layout.ExperimentalLayoutApi",
"-opt-in=androidx.compose.material.ExperimentalMaterialApi",
"-opt-in=androidx.compose.material3.ExperimentalMaterial3Api",

View file

@ -1,4 +1,3 @@
-allowaccessmodification
-dontusemixedcaseclassnames
-ignorewarnings
-verbose

View file

@ -17,6 +17,7 @@
-keep,allowoptimization class app.cash.quickjs.** { public protected *; }
-keep,allowoptimization class uy.kohesive.injekt.** { public protected *; }
-keep,allowoptimization class eu.davidea.flexibleadapter.** { public protected *; }
-keep class io.requery.android.database.** { public protected *; }
# From extensions-lib
-keep,allowoptimization class eu.kanade.tachiyomi.network.interceptor.RateLimitInterceptorKt { public protected *; }