mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-16 14:49:17 +01:00
Bump dependencies
This commit is contained in:
parent
2c4ddca38e
commit
e748d91d4a
@ -187,7 +187,6 @@ dependencies {
|
|||||||
implementation(androidx.paging.compose)
|
implementation(androidx.paging.compose)
|
||||||
|
|
||||||
implementation(libs.bundles.sqlite)
|
implementation(libs.bundles.sqlite)
|
||||||
implementation(androidx.sqlite)
|
|
||||||
implementation(libs.sqldelight.android.driver)
|
implementation(libs.sqldelight.android.driver)
|
||||||
implementation(libs.sqldelight.coroutines)
|
implementation(libs.sqldelight.coroutines)
|
||||||
implementation(libs.sqldelight.android.paging)
|
implementation(libs.sqldelight.android.paging)
|
||||||
|
@ -13,7 +13,7 @@ splashscreen = "androidx.core:core-splashscreen:1.0.0-alpha02"
|
|||||||
recyclerview = "androidx.recyclerview:recyclerview:1.3.0-rc01"
|
recyclerview = "androidx.recyclerview:recyclerview:1.3.0-rc01"
|
||||||
viewpager = "androidx.viewpager:viewpager:1.1.0-alpha01"
|
viewpager = "androidx.viewpager:viewpager:1.1.0-alpha01"
|
||||||
glance = "androidx.glance:glance-appwidget:1.0.0-alpha03"
|
glance = "androidx.glance:glance-appwidget:1.0.0-alpha03"
|
||||||
profileinstaller = "androidx.profileinstaller:profileinstaller:1.2.0"
|
profileinstaller = "androidx.profileinstaller:profileinstaller:1.2.1"
|
||||||
|
|
||||||
lifecycle-common = { module = "androidx.lifecycle:lifecycle-common", version.ref = "lifecycle_version" }
|
lifecycle-common = { module = "androidx.lifecycle:lifecycle-common", version.ref = "lifecycle_version" }
|
||||||
lifecycle-process = { module = "androidx.lifecycle:lifecycle-process", version.ref = "lifecycle_version" }
|
lifecycle-process = { module = "androidx.lifecycle:lifecycle-process", version.ref = "lifecycle_version" }
|
||||||
@ -25,8 +25,6 @@ guava = "com.google.guava:guava:31.1-android"
|
|||||||
paging-runtime = "androidx.paging:paging-runtime:3.1.1"
|
paging-runtime = "androidx.paging:paging-runtime:3.1.1"
|
||||||
paging-compose = "androidx.paging:paging-compose:1.0.0-alpha17"
|
paging-compose = "androidx.paging:paging-compose:1.0.0-alpha17"
|
||||||
|
|
||||||
sqlite = "androidx.sqlite:sqlite-framework:2.2.0"
|
|
||||||
|
|
||||||
benchmark-macro = "androidx.benchmark:benchmark-macro-junit4:1.1.1"
|
benchmark-macro = "androidx.benchmark:benchmark-macro-junit4:1.1.1"
|
||||||
test-ext = "androidx.test.ext:junit-ktx:1.1.4"
|
test-ext = "androidx.test.ext:junit-ktx:1.1.4"
|
||||||
test-espresso-core = "androidx.test.espresso:espresso-core:3.5.0"
|
test-espresso-core = "androidx.test.espresso:espresso-core:3.5.0"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[versions]
|
[versions]
|
||||||
compiler = "1.4.0-alpha02"
|
compiler = "1.4.0-alpha02"
|
||||||
compose-bom = "2022.11.00"
|
compose-bom = "2022.12.00"
|
||||||
accompanist = "0.28.0"
|
accompanist = "0.28.0"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
|
@ -4,6 +4,7 @@ okhttp_version = "5.0.0-alpha.10"
|
|||||||
nucleus_version = "3.0.0"
|
nucleus_version = "3.0.0"
|
||||||
coil_version = "2.2.2"
|
coil_version = "2.2.2"
|
||||||
shizuku_version = "12.2.0"
|
shizuku_version = "12.2.0"
|
||||||
|
sqlite = "2.3.0-rc01"
|
||||||
sqldelight = "1.5.4"
|
sqldelight = "1.5.4"
|
||||||
leakcanary = "2.10"
|
leakcanary = "2.10"
|
||||||
voyager = "1.0.0-rc07"
|
voyager = "1.0.0-rc07"
|
||||||
@ -34,7 +35,8 @@ disklrucache = "com.jakewharton:disklrucache:2.0.2"
|
|||||||
unifile = "com.github.tachiyomiorg:unifile:17bec43"
|
unifile = "com.github.tachiyomiorg:unifile:17bec43"
|
||||||
junrar = "com.github.junrar:junrar:7.5.4"
|
junrar = "com.github.junrar:junrar:7.5.4"
|
||||||
|
|
||||||
sqlitektx = "androidx.sqlite:sqlite-ktx:2.3.0-beta02"
|
sqlite-framework = { module = "androidx.sqlite:sqlite-framework", version.ref = "sqlite" }
|
||||||
|
sqlite-ktx = { module = "androidx.sqlite:sqlite-ktx", version.ref = "sqlite" }
|
||||||
sqlite-android = "com.github.requery:sqlite-android:3.39.2"
|
sqlite-android = "com.github.requery:sqlite-android:3.39.2"
|
||||||
|
|
||||||
preferencektx = "androidx.preference:preference-ktx:1.2.0"
|
preferencektx = "androidx.preference:preference-ktx:1.2.0"
|
||||||
@ -94,7 +96,7 @@ voyager-transitions = { module = "ca.gosyer:voyager-transitions", version.ref =
|
|||||||
reactivex = ["rxandroid", "rxjava", "rxrelay"]
|
reactivex = ["rxandroid", "rxjava", "rxrelay"]
|
||||||
okhttp = ["okhttp-core", "okhttp-logging", "okhttp-dnsoverhttps"]
|
okhttp = ["okhttp-core", "okhttp-logging", "okhttp-dnsoverhttps"]
|
||||||
js-engine = ["quickjs-android"]
|
js-engine = ["quickjs-android"]
|
||||||
sqlite = ["sqlitektx", "sqlite-android"]
|
sqlite = ["sqlite-framework", "sqlite-ktx", "sqlite-android"]
|
||||||
nucleus = ["nucleus-core", "nucleus-supportv7"]
|
nucleus = ["nucleus-core", "nucleus-supportv7"]
|
||||||
coil = ["coil-core", "coil-gif", "coil-compose"]
|
coil = ["coil-core", "coil-gif", "coil-compose"]
|
||||||
shizuku = ["shizuku-api", "shizuku-provider"]
|
shizuku = ["shizuku-api", "shizuku-provider"]
|
||||||
|
Loading…
Reference in New Issue
Block a user