mirror of
https://github.com/null2264/yokai.git
synced 2025-06-20 18:24:42 +00:00
Downgrade requery sqlite
idk why but it upgrading to java 17 has screwed it. should close #1619
This commit is contained in:
parent
d58c623862
commit
2c1972cab9
3 changed files with 5 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
-allowaccessmodification
|
||||
-dontusemixedcaseclassnames
|
||||
-ignorewarnings
|
||||
-verbose
|
||||
|
|
1
app/proguard-rules.pro
vendored
1
app/proguard-rules.pro
vendored
|
@ -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 *; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue