Skip to content

Commit 2674dce

Browse files
author
Martin Styk
committed
Update dependencies
1 parent 139f095 commit 2674dce

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build-logic/convention/src/main/kotlin/SpotlessPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class SpotlessPlugin : Plugin<Project> {
1212
extensions.configure<SpotlessExtension> {
1313
kotlin {
1414
target("**/*.kt")
15-
targetExclude("$buildDir/**/*.kt")
15+
targetExclude("${layout.buildDirectory}/**/*.kt")
1616
targetExclude("bin/**/*.kt")
1717
ktlint("0.48.2")
1818
}

build-logic/convention/src/main/kotlin/sk/styk/martin/apkanalyzer/Kotlin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
88

99

1010
internal fun Project.configureKotlin(
11-
commonExtension: CommonExtension<*, *, *, *, *>,
11+
commonExtension: CommonExtension<*, *, *, *, *, *>,
1212
) {
1313
commonExtension.compileOptions {
1414
sourceCompatibility = JavaVersion.VERSION_11

gradle/libs.versions.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[versions]
2-
kotlin = "1.9.10"
3-
gradle-plugin = "8.2.0"
2+
kotlin = "1.9.20"
3+
gradle-plugin = "8.4.0"
44
hilt = "2.46.1"
5-
lifecycle = "2.6.1"
6-
coroutines = "1.7.1"
5+
lifecycle = "2.8.0"
6+
coroutines = "1.7.3"
77
androidx-appcompat = "1.6.1"
8-
material = "1.7.0"
8+
material = "1.12.0"
99
glide = "4.15.1"
1010
spotless = "6.19.0"
1111

@@ -25,12 +25,12 @@ androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "a
2525
androidx-legacy = "androidx.legacy:legacy-support-v4:1.0.0"
2626
androidx-multidex = "androidx.multidex:multidex:2.0.1"
2727

28-
fragment-ktx = "androidx.fragment:fragment-ktx:1.5.7"
29-
preference-ktx = "androidx.preference:preference-ktx:1.2.0"
28+
fragment-ktx = "androidx.fragment:fragment-ktx:1.7.1"
29+
preference-ktx = "androidx.preference:preference-ktx:1.2.1"
3030
palette-ktx = "androidx.palette:palette-ktx:1.0.0"
3131

3232
constraintlayout = "androidx.constraintlayout:constraintlayout:2.1.4"
33-
recyclerview = "androidx.recyclerview:recyclerview:1.3.0"
33+
recyclerview = "androidx.recyclerview:recyclerview:1.3.2"
3434
cardview = "androidx.cardview:cardview:1.0.0"
3535
mp-chart = "com.github.PhilJay:MPAndroidChart:v3.1.0-alpha"
3636
gif-drawable = "pl.droidsonroids.gif:android-gif-drawable:1.2.25"
@@ -47,14 +47,14 @@ google-play-core-ktx = "com.google.android.play:core-ktx:1.8.1"
4747
hilt = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
4848
hilt-compiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "hilt" }
4949

50-
firebase-bom = "com.google.firebase:firebase-bom:32.0.0"
50+
firebase-bom = "com.google.firebase:firebase-bom:33.0.0"
5151
firebase-analytics = { group = "com.google.firebase", name = "firebase-analytics-ktx" }
5252
firebase-crashlytics = { group = "com.google.firebase", name = "firebase-crashlytics-ktx" }
5353
firebase-performance = { group = "com.google.firebase", name = "firebase-perf-ktx" }
5454

5555
leakcannary = "com.squareup.leakcanary:leakcanary-android:2.9.1"
5656
junit = "junit:junit:4.13.2"
57-
espresso-core = "androidx.test.espresso:espresso-core:3.1.0"
57+
espresso-core = "androidx.test.espresso:espresso-core:3.5.1"
5858

5959
# Dependencies of the included build-logic
6060
android-gradle-plugin = { group = "com.android.tools.build", name = "gradle", version.ref = "gradle-plugin" }
@@ -66,9 +66,9 @@ android-application = { id = "com.android.application", version.ref = "gradle-pl
6666
android-library = { id = "com.android.library", version.ref = "gradle-plugin" }
6767
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
6868
hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
69-
crashlytics = "com.google.firebase.crashlytics:2.9.2"
69+
crashlytics = "com.google.firebase.crashlytics:3.0.1"
7070
firebase-perf = "com.google.firebase.firebase-perf:1.4.2"
71-
google-services = "com.google.gms.google-services:4.3.14"
71+
google-services = "com.google.gms.google-services:4.4.1"
7272
spotless = { id = "com.diffplug.spotless", version.ref = "spotless" }
7373
dependency-updates = "com.github.ben-manes.versions:0.46.0"
7474

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Apr 17 20:31:51 CEST 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)