Skip to content

Commit f0a8850

Browse files
committed
some code cleanup.
1 parent 958ddeb commit f0a8850

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/android-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
steps:
2020

2121
- name: 🚚 Get latest code
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

2424
- name: ☕ Set up JDK 11
25-
uses: actions/setup-java@v2
25+
uses: actions/setup-java@v3
2626
with:
2727
java-version: '11'
2828
distribution: 'temurin'

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ buildscript {
66
compile_sdk = 32
77
target_sdk = 32
88
min_sdk = 21
9-
agp_version = '7.2.2'
10-
kotlin_version = '1.7.0'
9+
agp_version = '7.3.1'
10+
kotlin_version = '1.7.20'
1111
kotlin_compiler_extension_version = '1.2.0'
12-
compose_version = '1.2.0-rc01'
13-
material_version = '1.6.1'
14-
appcompat_version = '1.4.2'
12+
compose_version = '1.3.1'
13+
material_version = '1.7.0'
14+
appcompat_version = '1.5.1'
1515
preference_version = '1.2.0'
16-
core_version = '1.8.0'
17-
nav_version = '2.5.1'
16+
core_version = '1.9.0'
17+
nav_version = '2.5.3'
1818
junit_version = '4.13.2'
19-
version_name = '1.1.2'
20-
version_code = 12
19+
version_name = '1.1.3'
20+
version_code = 13
2121
}
2222
}
2323

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ dependencies {
7979

8080
/* Composable Preview */
8181
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
82-
debugImplementation "androidx.customview:customview-poolingcontainer:1.0.0-rc01"
82+
debugImplementation "androidx.customview:customview-poolingcontainer:1.0.0"
8383
}
8484

8585
task javadoc(type: Javadoc) {

mobile/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,18 @@ dependencies {
6565
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
6666

6767
// https://mvnrepository.com/artifact/androidx.compose
68-
implementation "androidx.activity:activity-compose:1.5.1"
68+
implementation "androidx.activity:activity-compose:1.6.1"
6969
implementation "androidx.compose.ui:ui:$compose_version"
7070
implementation "androidx.compose.runtime:runtime:$compose_version"
7171
implementation "androidx.compose.material:material:$compose_version"
7272
implementation "androidx.compose.foundation:foundation:$compose_version"
7373
debugImplementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
7474

7575
testImplementation "junit:junit:$junit_version"
76-
androidTestImplementation "androidx.test.ext:junit:1.1.3"
76+
androidTestImplementation "androidx.test.ext:junit:1.1.4"
7777
androidTestImplementation "androidx.navigation:navigation-testing:$nav_version"
7878
androidTestImplementation "androidx.test.uiautomator:uiautomator:2.2.0"
79-
androidTestImplementation "androidx.test.espresso:espresso-core:3.4.0"
79+
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.0"
8080

8181
// Test rules and transitive dependencies:
8282
androidTestImplementation("androidx.compose.ui:ui-test-junit4:$compose_version")

0 commit comments

Comments
 (0)