Skip to content

Commit 6762841

Browse files
committed
AGP 8.12.0
1 parent b868937 commit 6762841

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

gradle/libs.versions.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android_target_sdk = '36'
77
android_min_sdk = '22'
88

99
# Gradle Plugins
10-
android_gradle_plugin = '8.11.1'
10+
android_gradle_plugin = '8.12.0'
1111
kotlin = '2.2.0'
1212
material_design = '1.12.0'
1313
retrofit = '3.0.0'
@@ -17,22 +17,23 @@ flexbox = '3.0.0'
1717
# Note: DirCacheCheckout.java uses InputStream.transferTo() since jgit 6.3; no such method on Android.
1818
jgit = '6.2.0.202206071550-r'
1919
slf4j = '2.0.17'
20+
2021
androidx_appcompat = '1.7.1'
2122
androidx_annotation = '1.9.1'
22-
androidx_navigation = '2.9.2'
23+
androidx_navigation = '2.9.3'
2324
androidx_fragment = '1.8.8'
2425
androidx_recyclerview = '1.4.0'
2526
androidx_cardview = '1.0.0'
2627
androidx_preference = '1.2.1'
2728
androidx_room = '2.7.2'
2829
androidx_splashscreen = '1.0.1'
29-
androidx_test_junit = '1.2.1'
30-
androidx_test_core = '1.6.1'
31-
androidx_test_rules = '1.6.1'
32-
androidx_test_runner = '1.6.2'
33-
androidx_test_monitor = '1.7.2'
30+
androidx_test_junit = '1.3.0'
31+
androidx_test_core = '1.7.0'
32+
androidx_test_rules = '1.7.0'
33+
androidx_test_runner = '1.7.0'
34+
androidx_test_monitor = '1.8.0'
3435
androidx_test_uiautomator = '2.3.0'
35-
androidx_test_espresso = '3.6.1'
36+
androidx_test_espresso = '3.7.0'
3637

3738
[plugins]
3839
android_application = { id = "com.android.application", version.ref = "android_gradle_plugin" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon May 15 03:22:49 CEST 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

library/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ dependencies {
7575
// Annotations
7676
implementation(libs.androidx.annotation)
7777

78-
// App Compat
78+
// AppCompat
7979
implementation(libs.androidx.appcompat)
8080

8181
// Data-Binding Runtime
8282
implementation(libs.androidx.databinding)
8383

84-
// Room Runtime
84+
// Room
8585
annotationProcessor(libs.androidx.room.compiler)
86-
testAnnotationProcessor(libs.androidx.room.compiler)
86+
androidTestAnnotationProcessor(libs.androidx.room.compiler)
8787
testImplementation(libs.androidx.room.testing)
8888
api(libs.androidx.room.runtime)
8989
api(libs.androidx.room.paging)

0 commit comments

Comments
 (0)