Skip to content

Commit 5ffa197

Browse files
committed
dependencies updated.
1 parent a0dd4f5 commit 5ffa197

File tree

3 files changed

+34
-34
lines changed

3 files changed

+34
-34
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ buildscript {
88
target_sdk = 34
99
build_tools_version = '34.0.0'
1010
android_gradle_plugin_version = '8.1.2'
11-
kotlin_compiler_extension_version = '1.5.3'
12-
kotlin_version = '1.9.10'
13-
junit_version = '4.13.2'
1411
material_version = '1.9.0'
15-
androidx_compose_activity_version = '1.7.2'
12+
junit_version = '4.13.2'
13+
kotlin_version = '1.9.10'
14+
kotlin_compiler_extension_version = '1.5.3'
1615
androidx_compose_version = '1.5.3'
16+
androidx_compose_activity_version = '1.7.2'
1717
androidx_appcompat_version = '1.6.1'
1818
androidx_preference_version = '1.2.1'
1919
androidx_core_version = '1.12.0'

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
composeOptions {
3333
// See the "Compose to Kotlin Compatibility Map" for compatible versions:
3434
// https://developer.android.com/jetpack/androidx/releases/compose-kotlin
35-
kotlinCompilerExtensionVersion compose_compiler_version
35+
kotlinCompilerExtensionVersion kotlin_compiler_extension_version
3636
}
3737

3838
buildFeatures {

mobile/build.gradle

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
composeOptions {
3333
// See the "Compose to Kotlin Compatibility Map" for compatible versions:
3434
// https://developer.android.com/jetpack/androidx/releases/compose-kotlin
35-
kotlinCompilerExtensionVersion compose_compiler_version
35+
kotlinCompilerExtensionVersion kotlin_compiler_extension_version
3636
}
3737

3838
buildFeatures {
@@ -67,61 +67,61 @@ dependencies {
6767

6868
implementation "com.google.android.material:material:$material_version"
6969

70-
implementation "androidx.core:core-ktx:$core_version"
71-
implementation "androidx.appcompat:appcompat:$appcompat_version"
72-
implementation "androidx.preference:preference-ktx:$preference_version"
70+
implementation "androidx.core:core-ktx:$androidx_core_version"
71+
implementation "androidx.appcompat:appcompat:$androidx_appcompat_version"
72+
implementation "androidx.preference:preference-ktx:$androidx_preference_version"
7373

74-
androidTestImplementation "androidx.navigation:navigation-testing:$nav_version"
75-
implementation "androidx.navigation:navigation-runtime-ktx:$nav_version"
76-
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
77-
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
74+
androidTestImplementation "androidx.navigation:navigation-testing:$androidx_navigation_version"
75+
implementation "androidx.navigation:navigation-runtime-ktx:$androidx_navigation_version"
76+
implementation "androidx.navigation:navigation-fragment-ktx:$androidx_navigation_version"
77+
implementation "androidx.navigation:navigation-ui-ktx:$androidx_navigation_version"
7878

7979
// https://mvnrepository.com/artifact/androidx.compose
8080
// https://developer.android.com/jetpack/androidx/releases/compose
81-
debugImplementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
82-
implementation "androidx.activity:activity-compose:$compose_activity_version"
83-
implementation "androidx.compose.foundation:foundation:$compose_version"
84-
implementation "androidx.compose.material:material:$compose_version"
85-
implementation "androidx.compose.runtime:runtime:$compose_version"
86-
implementation "androidx.compose.ui:ui:$compose_version"
81+
debugImplementation "androidx.compose.ui:ui-tooling-preview:$androidx_compose_version"
82+
implementation "androidx.activity:activity-compose:$androidx_compose_activity_version"
83+
implementation "androidx.compose.foundation:foundation:$androidx_compose_version"
84+
implementation "androidx.compose.material:material:$androidx_compose_version"
85+
implementation "androidx.compose.runtime:runtime:$androidx_compose_version"
86+
implementation "androidx.compose.ui:ui:$androidx_compose_version"
8787

8888
// jUnit
8989
testImplementation "junit:junit:$junit_version"
9090

9191
// Required for connected tests.
9292
// https://mvnrepository.com/artifact/androidx.test/monitor
93-
debugImplementation "androidx.test:monitor:$test_monitor_version"
93+
debugImplementation "androidx.test:monitor:$androidx_test_monitor_version"
9494

9595
// Required for connected tests (ActivityInvoker).
9696
// https://mvnrepository.com/artifact/androidx.test.ext
97-
debugImplementation "androidx.test.ext:junit:$test_junit_version"
97+
debugImplementation "androidx.test.ext:junit:$androidx_test_junit_version"
9898

9999
// https://mvnrepository.com/artifact/androidx.test
100100
// https://developer.android.com/jetpack/androidx/releases/test
101-
androidTestImplementation "androidx.test:core:$test_core_version"
102-
androidTestImplementation "androidx.test:runner:$test_runner_version"
103-
androidTestImplementation "androidx.test:rules:$test_rules_version"
101+
androidTestImplementation "androidx.test:core:$androidx_test_core_version"
102+
androidTestImplementation "androidx.test:runner:$androidx_test_runner_version"
103+
androidTestImplementation "androidx.test:rules:$androidx_test_rules_version"
104104

105105
// https://mvnrepository.com/artifact/androidx.test.uiautomator/uiautomator
106-
androidTestImplementation "androidx.test.uiautomator:uiautomator:$uiautomator_version"
106+
androidTestImplementation "androidx.test.uiautomator:uiautomator:$androidx_test_uiautomator_version"
107107

108108
// Espresso
109-
androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_version"
110-
// androidTestImplementation "androidx.test.espresso:espresso-contrib:$espresso_version"
111-
// androidTestImplementation "androidx.test.espresso:espresso-intents:$espresso_version"
112-
// androidTestImplementation "androidx.test.espresso:espresso-accessibility:$espresso_version"
113-
androidTestImplementation "androidx.test.espresso:espresso-web:$espresso_version"
114-
// androidTestImplementation "androidx.test.espresso.idling:idling-concurrent:$espresso_version"
109+
androidTestImplementation "androidx.test.espresso:espresso-core:$androidx_test_espresso_version"
110+
// androidTestImplementation "androidx.test.espresso:espresso-contrib:$androidx_test_espresso_version"
111+
// androidTestImplementation "androidx.test.espresso:espresso-intents:$androidx_test_espresso_version"
112+
// androidTestImplementation "androidx.test.espresso:espresso-accessibility:$androidx_test_espresso_version"
113+
androidTestImplementation "androidx.test.espresso:espresso-web:$androidx_test_espresso_version"
114+
// androidTestImplementation "androidx.test.espresso.idling:idling-concurrent:$androidx_test_espresso_version"
115115

116116
// The following dependency can be either "implementation" or "androidTestImplementation",
117117
// depending on whether you want it to appear on your APK's compile classpath or the test APK classpath.
118-
// androidTestImplementation "androidx.test.espresso:espresso-idling-resource:$espresso_version"
118+
// androidTestImplementation "androidx.test.espresso:espresso-idling-resource:$androidx_test_espresso_version"
119119

120120
// Test rules and transitive dependencies:
121-
androidTestImplementation("androidx.compose.ui:ui-test-junit4:$compose_version")
121+
androidTestImplementation("androidx.compose.ui:ui-test-junit4:$androidx_compose_version")
122122

123123
// Needed for createComposeRule, but not createAndroidComposeRule:
124-
debugImplementation("androidx.compose.ui:ui-test-manifest:1.5.3")
124+
debugImplementation("androidx.compose.ui:ui-test-manifest:$androidx_compose_version")
125125
}
126126

127127
// disable caching

0 commit comments

Comments
 (0)