[app] Update dependencies (#1344)
This commit is contained in:
parent
5f14670bd9
commit
01f3a67c99
|
|
@ -163,10 +163,10 @@ dependencies {
|
||||||
val glideVersion = "4.12.0"
|
val glideVersion = "4.12.0"
|
||||||
val navVersion: String by rootProject.extra
|
val navVersion: String by rootProject.extra
|
||||||
annotationProcessor("com.github.bumptech.glide:compiler:$glideVersion")
|
annotationProcessor("com.github.bumptech.glide:compiler:$glideVersion")
|
||||||
implementation("androidx.activity:activity:1.3.1")
|
implementation("androidx.activity:activity:1.4.0")
|
||||||
implementation("androidx.browser:browser:1.3.0")
|
implementation("androidx.browser:browser:1.3.0")
|
||||||
implementation("androidx.constraintlayout:constraintlayout:2.1.1")
|
implementation("androidx.constraintlayout:constraintlayout:2.1.1")
|
||||||
implementation("androidx.core:core:1.6.0")
|
implementation("androidx.core:core:1.7.0")
|
||||||
implementation("androidx.fragment:fragment:1.3.6")
|
implementation("androidx.fragment:fragment:1.3.6")
|
||||||
implementation("androidx.navigation:navigation-fragment:$navVersion")
|
implementation("androidx.navigation:navigation-fragment:$navVersion")
|
||||||
implementation("androidx.navigation:navigation-ui:$navVersion")
|
implementation("androidx.navigation:navigation-ui:$navVersion")
|
||||||
|
|
@ -175,8 +175,8 @@ dependencies {
|
||||||
implementation("androidx.slidingpanelayout:slidingpanelayout:1.2.0-beta01")
|
implementation("androidx.slidingpanelayout:slidingpanelayout:1.2.0-beta01")
|
||||||
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
||||||
implementation("com.github.bumptech.glide:glide:$glideVersion")
|
implementation("com.github.bumptech.glide:glide:$glideVersion")
|
||||||
implementation("com.google.android.material:material:1.5.0-alpha04")
|
implementation("com.google.android.material:material:1.5.0-alpha05")
|
||||||
implementation("com.google.code.gson:gson:2.8.8")
|
implementation("com.google.code.gson:gson:2.8.9")
|
||||||
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.2"))
|
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.2"))
|
||||||
implementation("com.squareup.okhttp3:okhttp")
|
implementation("com.squareup.okhttp3:okhttp")
|
||||||
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps")
|
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps")
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ buildscript {
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
val navVersion by extra("2.4.0-alpha10")
|
val navVersion by extra("2.4.0-beta01")
|
||||||
val agpVersion by extra("7.0.3")
|
val agpVersion by extra("7.0.3")
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath("com.android.tools.build:gradle:$agpVersion")
|
classpath("com.android.tools.build:gradle:$agpVersion")
|
||||||
|
|
|
||||||
|
|
@ -356,7 +356,7 @@ androidComponents.onVariants { v ->
|
||||||
|
|
||||||
val adb: String = androidComponents.sdkComponents.adb.get().asFile.absolutePath
|
val adb: String = androidComponents.sdkComponents.adb.get().asFile.absolutePath
|
||||||
val killLspd = task("killLspd", Exec::class) {
|
val killLspd = task("killLspd", Exec::class) {
|
||||||
commandLine(adb, "shell", "su", "-c", "killall -w lspd")
|
commandLine(adb, "shell", "su", "-c", "killall", "lspd")
|
||||||
isIgnoreExitValue = true
|
isIgnoreExitValue = true
|
||||||
}
|
}
|
||||||
val pushLspd = task("pushLspd", Exec::class) {
|
val pushLspd = task("pushLspd", Exec::class) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue