Skip to content

Commit 69dd0ea

Browse files
committed
Update dependencies
1 parent fda392a commit 69dd0ea

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ buildscript {
1818
classpath(rootProject.extra["androidPlugin"].toString())
1919
classpath(kotlin("gradle-plugin", kotlinVersion))
2020
classpath("com.google.android.gms:oss-licenses-plugin:0.10.4")
21-
classpath("com.google.firebase:firebase-crashlytics-gradle:2.7.0")
21+
classpath("com.google.firebase:firebase-crashlytics-gradle:2.7.1")
2222
classpath("com.google.gms:google-services:4.3.8")
2323
classpath("com.vanniktech:gradle-maven-publish-plugin:0.14.2")
24-
classpath("gradle.plugin.org.mozilla.rust-android-gradle:plugin:0.8.3")
2524
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.4.32")
25+
classpath("org.mozilla.rust-android-gradle:plugin:0.8.6")
2626
}
2727
}
2828

buildSrc/src/main/kotlin/Helpers.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ fun Project.setupCommon() {
4747

4848
dependencies {
4949
add("testImplementation", "junit:junit:4.13.2")
50-
add("androidTestImplementation", "androidx.test:runner:1.3.0")
51-
add("androidTestImplementation", "androidx.test.espresso:espresso-core:3.3.0")
50+
add("androidTestImplementation", "androidx.test:runner:1.4.0")
51+
add("androidTestImplementation", "androidx.test.espresso:espresso-core:3.4.0")
5252
}
5353
}
5454

@@ -67,7 +67,7 @@ fun Project.setupCore() {
6767
}
6868
ndkVersion = "21.3.6528147"
6969
}
70-
dependencies.add("coreLibraryDesugaring", "com.android.tools:desugar_jdk_libs:1.1.1")
70+
dependencies.add("coreLibraryDesugaring", "com.android.tools:desugar_jdk_libs:1.1.5")
7171
}
7272

7373
private val abiCodes = mapOf("armeabi-v7a" to 1, "arm64-v8a" to 2, "x86" to 3, "x86_64" to 4)

core/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ dependencies {
6969
val workVersion = "2.5.0"
7070

7171
api(project(":plugin"))
72-
api("androidx.core:core-ktx:1.6.0-rc01")
72+
api("androidx.core:core-ktx:1.6.0")
7373
// https://android-developers.googleblog.com/2019/07/android-q-beta-5-update.html
7474
api("androidx.drawerlayout:drawerlayout:1.1.1")
7575
api("androidx.fragment:fragment-ktx:1.3.5")
76-
api("com.google.android.material:material:1.3.0")
76+
api("com.google.android.material:material:1.4.0")
7777

7878
api("androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion")
7979
api("androidx.lifecycle:lifecycle-livedata-core-ktx:$lifecycleVersion")
@@ -84,12 +84,12 @@ dependencies {
8484
api("com.google.android.gms:play-services-oss-licenses:17.0.0")
8585
api("com.google.code.gson:gson:2.8.7")
8686
api("com.google.firebase:firebase-analytics-ktx:19.0.0")
87-
api("com.google.firebase:firebase-crashlytics:18.0.1")
87+
api("com.google.firebase:firebase-crashlytics:18.1.0")
8888
api("com.jakewharton.timber:timber:4.7.1")
8989
api("dnsjava:dnsjava:3.4.0")
9090
api("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion")
9191
api("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:$coroutinesVersion")
9292
kapt("androidx.room:room-compiler:$roomVersion")
9393
androidTestImplementation("androidx.room:room-testing:$roomVersion")
94-
androidTestImplementation("androidx.test.ext:junit-ktx:1.1.2")
94+
androidTestImplementation("androidx.test.ext:junit-ktx:1.1.3")
9595
}

mobile/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ dependencies {
1717
implementation("androidx.browser:browser:1.3.0")
1818
implementation("androidx.camera:camera-camera2:$cameraxVersion")
1919
implementation("androidx.camera:camera-lifecycle:$cameraxVersion")
20-
implementation("androidx.camera:camera-view:1.0.0-alpha25")
20+
implementation("androidx.camera:camera-view:1.0.0-alpha26")
2121
implementation("androidx.constraintlayout:constraintlayout:2.0.4")
2222
implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion")
23-
implementation("com.google.mlkit:barcode-scanning:16.1.2")
23+
implementation("com.google.mlkit:barcode-scanning:16.2.0")
2424
implementation("com.google.zxing:core:3.4.1")
2525
implementation("com.takisoft.preferencex:preferencex-simplemenu:1.1.0")
2626
implementation("com.twofortyfouram:android-plugin-api-for-locale:1.0.4")
27-
implementation("me.zhanghai.android.fastscroll:library:1.1.6")
27+
implementation("me.zhanghai.android.fastscroll:library:1.1.7")
2828
}

repositories.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rootProject.extra.apply {
2-
set("androidPlugin", "com.android.tools.build:gradle:4.2.1")
3-
set("kotlinVersion", "1.5.10")
2+
set("androidPlugin", "com.android.tools.build:gradle:4.2.2")
3+
set("kotlinVersion", "1.5.20")
44
}
55

66
repositories {

0 commit comments

Comments
 (0)