Update dependencies
Close #156 as merged. Gradle 8.10.2 is required to use agp 8.8.0. Update manifest-editor to fix manifest parsing issue of LSPatch.
This commit is contained in:
parent
791f45661d
commit
c9e11c6770
|
|
@ -1 +1 @@
|
|||
Subproject commit da0b8e22ec93ed6394aae9d11f218bb35940d376
|
||||
Subproject commit c40dc842a3e3ec23ec77b08d638671af0d9062d3
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
[versions]
|
||||
agp = "8.7.3"
|
||||
agp = "8.8.0"
|
||||
kotlin = "2.1.0"
|
||||
nav = "2.8.5"
|
||||
appcenter = "5.0.5"
|
||||
|
|
@ -31,7 +31,7 @@ rikkax-recyclerview = { module = "dev.rikka.rikkax.recyclerview:recyclerview-ktx
|
|||
rikkax-widget-borderview = { module = "dev.rikka.rikkax.widget:borderview", version = "1.1.0" }
|
||||
rikkax-widget-mainswitchbar = { module = "dev.rikka.rikkax.widget:mainswitchbar", version = "1.0.2" }
|
||||
|
||||
androidx-activity = { module = "androidx.activity:activity", version = "1.9.3" }
|
||||
androidx-activity = { module = "androidx.activity:activity", version = "1.10.0" }
|
||||
androidx-annotation = { module = "androidx.annotation:annotation", version = "1.9.1" }
|
||||
androidx-browser = { module = "androidx.browser:browser", version = "1.8.0" }
|
||||
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version = "2.2.0" }
|
||||
|
|
@ -40,7 +40,7 @@ androidx-fragment = { module = "androidx.fragment:fragment", version = "1.8.5" }
|
|||
androidx-navigation-fragment = { group = "androidx.navigation", name = "navigation-fragment", version.ref = "nav" }
|
||||
androidx-navigation-ui = { group = "androidx.navigation", name = "navigation-ui", version.ref = "nav" }
|
||||
androidx-preference = { module = "androidx.preference:preference", version = "1.2.1" }
|
||||
androidx-recyclerview = { module = "androidx.recyclerview:recyclerview", version = "1.3.2" }
|
||||
androidx-recyclerview = { module = "androidx.recyclerview:recyclerview", version = "1.4.0" }
|
||||
androidx-swiperefreshlayout = { module = "androidx.swiperefreshlayout:swiperefreshlayout", version = "1.2.0-alpha01" }
|
||||
|
||||
glide = { group = "com.github.bumptech.glide", name = "glide", version.ref = "glide" }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
|
|
|||
|
|
@ -86,8 +86,7 @@ done
|
|||
# shellcheck disable=SC2034
|
||||
APP_BASE_NAME=${0##*/}
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
|
||||
' "$PWD" ) || exit
|
||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
|
|
|
|||
Loading…
Reference in New Issue