Skip to content

Commit d980718

Browse files
dev4umadeye
authored andcommitted
Update dependencies
1 parent fadd842 commit d980718

File tree

7 files changed

+23
-25
lines changed

7 files changed

+23
-25
lines changed

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ buildscript {
1717
val kotlinVersion = rootProject.extra["kotlinVersion"].toString()
1818
classpath(rootProject.extra["androidPlugin"].toString())
1919
classpath(kotlin("gradle-plugin", kotlinVersion))
20-
classpath("com.google.android.gms:oss-licenses-plugin:0.10.5")
21-
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.1")
22-
classpath("com.google.gms:google-services:4.3.13")
20+
classpath("com.google.android.gms:oss-licenses-plugin:0.10.6")
21+
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.2")
22+
classpath("com.google.gms:google-services:4.3.14")
2323
classpath("com.vanniktech:gradle-maven-publish-plugin:0.21.0")
2424
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.7.10")
2525
classpath("org.mozilla.rust-android-gradle:plugin:0.9.3")

buildSrc/src/main/kotlin/Helpers.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import org.gradle.kotlin.dsl.getByName
1212
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmOptions
1313
import java.util.*
1414

15-
const val lifecycleVersion = "2.5.0"
15+
const val lifecycleVersion = "2.5.1"
1616

1717
private val Project.android get() = extensions.getByName<BaseExtension>("android")
1818
private val BaseExtension.lint get() = (this as CommonExtension<*, *, *, *>).lint
@@ -26,7 +26,7 @@ val Project.currentFlavor get() = gradle.startParameter.taskRequests.toString().
2626

2727
fun Project.setupCommon() {
2828
android.apply {
29-
buildToolsVersion("33.0.0")
29+
buildToolsVersion("33.0.1")
3030
compileSdkVersion(33)
3131
defaultConfig {
3232
minSdk = 23
@@ -50,8 +50,8 @@ fun Project.setupCommon() {
5050

5151
dependencies {
5252
add("testImplementation", "junit:junit:4.13.2")
53-
add("androidTestImplementation", "androidx.test:runner:1.4.0")
54-
add("androidTestImplementation", "androidx.test.espresso:espresso-core:3.4.0")
53+
add("androidTestImplementation", "androidx.test:runner:1.5.1")
54+
add("androidTestImplementation", "androidx.test.espresso:espresso-core:3.5.0")
5555
}
5656
}
5757

core/build.gradle.kts

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import com.android.build.gradle.internal.tasks.factory.dependsOn
2-
import org.jetbrains.kotlin.cli.common.ExitCode
3-
import org.jetbrains.kotlin.gradle.tasks.throwGradleExceptionIfError
42

53
plugins {
64
id("com.android.library")
@@ -89,28 +87,28 @@ tasks.clean.dependsOn("cargoClean")
8987

9088
dependencies {
9189
val coroutinesVersion = "1.6.4"
92-
val roomVersion = "2.4.2"
90+
val roomVersion = "2.4.3"
9391
val workVersion = "2.7.1"
9492

9593
api(project(":plugin"))
96-
api("androidx.core:core-ktx:1.8.0")
97-
api("androidx.fragment:fragment-ktx:1.5.0")
98-
api("com.google.android.material:material:1.6.1")
94+
api("androidx.core:core-ktx:1.9.0")
95+
api("androidx.fragment:fragment-ktx:1.5.5")
96+
api("com.google.android.material:material:1.7.0")
9997

10098
api("androidx.lifecycle:lifecycle-livedata-core-ktx:$lifecycleVersion")
10199
api("androidx.preference:preference:1.2.0")
102100
api("androidx.room:room-runtime:$roomVersion")
103101
api("androidx.work:work-multiprocess:$workVersion")
104102
api("androidx.work:work-runtime-ktx:$workVersion")
105103
api("com.google.android.gms:play-services-oss-licenses:17.0.0")
106-
api("com.google.code.gson:gson:2.9.0")
107-
api("com.google.firebase:firebase-analytics-ktx:21.1.0")
108-
api("com.google.firebase:firebase-crashlytics:18.2.11")
104+
api("com.google.code.gson:gson:2.10")
105+
api("com.google.firebase:firebase-analytics-ktx:21.2.0")
106+
api("com.google.firebase:firebase-crashlytics:18.3.2")
109107
api("com.jakewharton.timber:timber:5.0.1")
110-
api("dnsjava:dnsjava:3.5.1")
108+
api("dnsjava:dnsjava:3.5.2")
111109
api("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion")
112110
api("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:$coroutinesVersion")
113111
kapt("androidx.room:room-compiler:$roomVersion")
114112
androidTestImplementation("androidx.room:room-testing:$roomVersion")
115-
androidTestImplementation("androidx.test.ext:junit-ktx:1.1.3")
113+
androidTestImplementation("androidx.test.ext:junit-ktx:1.1.4")
116114
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

mobile/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ dependencies {
2323
implementation("androidx.camera:camera-view:$cameraxVersion")
2424
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
2525
implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion")
26-
implementation("com.google.mlkit:barcode-scanning:17.0.2")
27-
implementation("com.google.zxing:core:3.5.0")
26+
implementation("com.google.mlkit:barcode-scanning:17.0.3")
27+
implementation("com.google.zxing:core:3.5.1")
2828
implementation("com.takisoft.preferencex:preferencex-simplemenu:1.1.0")
2929
implementation("com.twofortyfouram:android-plugin-api-for-locale:1.0.4")
3030
implementation("me.zhanghai.android.fastscroll:library:1.1.8")

plugin/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ android {
1414

1515
dependencies {
1616
api(kotlin("stdlib-jdk8"))
17-
api("androidx.core:core-ktx:1.7.0")
18-
api("androidx.fragment:fragment-ktx:1.4.1")
19-
api("com.google.android.material:material:1.6.0")
17+
api("androidx.core:core-ktx:1.9.0")
18+
api("androidx.fragment:fragment-ktx:1.5.5")
19+
api("com.google.android.material:material:1.7.0")
2020
}

repositories.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rootProject.extra.apply {
2-
set("androidPlugin", "com.android.tools.build:gradle:7.2.1")
2+
set("androidPlugin", "com.android.tools.build:gradle:7.3.1")
33
set("kotlinVersion", "1.7.10")
44
}
55

0 commit comments

Comments
 (0)