Skip to content

Commit 42ac00a

Browse files
committed
Library updates
1 parent ae1ae0e commit 42ac00a

4 files changed

Lines changed: 14 additions & 17 deletions

File tree

.gitpod.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ image:
22
file: .gitpod.Dockerfile
33

44
tasks:
5-
- before: |
6-
export GRADLE_USER_HOME="/workspace/.gradle"
7-
export M2_HOME="/workspace/.m2"
8-
- init: |
9-
./gradlew build
5+
- before: export GRADLE_USER_HOME="/workspace/.gradle"; export M2_HOME="/workspace/.m2"; export KONAN_DATA_DIR="workspace/.konan"
6+
- init: git fetch --tags && ./gradlew runUnitTests :lce:assemble :welcome:assemble
107

118
jetbrains:
129
intellij:

.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.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ allprojects {
3535
ext {
3636
versionCode = buildVersionCode()
3737
versionName = buildVersionName()
38-
androidBuildToolsVersion = '32.0.0'
38+
androidBuildToolsVersion = '33.0.0'
3939
androidMinSdkVersion = 24
40-
androidTargetSdkVersion = 32
41-
androidCompileSdkVersion = 32
40+
androidTargetSdkVersion = 33
41+
androidCompileSdkVersion = 33
4242

4343
developerId = 'motorro'
4444
developerName = 'Nikolai Kotchetkov'

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[versions]
2-
kotlin = "1.7.10"
2+
kotlin = "1.7.20"
33
coroutines = "1.6.4"
4-
compose = "1.2.1"
5-
compose_compiler = "1.3.0"
6-
hilt = "2.42"
4+
compose = "1.3.1"
5+
compose_compiler = "1.3.2"
6+
hilt = "2.44"
77

88
[plugins]
99
android_app = { id = "com.android.application", version = "7.3.0" }
@@ -24,10 +24,10 @@ kotlin-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines
2424

2525
desugaring = { module = "com.android.tools:desugar_jdk_libs", version = "1.1.5" }
2626

27-
androidx-core = { module = "androidx.core:core-ktx", version = "1.7.0" }
28-
androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version = "2.4.1" }
29-
androidx-lifecycle-livedata = { module = "androidx.lifecycle:lifecycle-livedata-ktx", version = "2.4.1" }
30-
androidx-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version = "2.4.1" }
27+
androidx-core = { module = "androidx.core:core-ktx", version = "1.9.0" }
28+
androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version = "2.5.1" }
29+
androidx-lifecycle-livedata = { module = "androidx.lifecycle:lifecycle-livedata-ktx", version = "2.5.1" }
30+
androidx-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version = "2.5.1" }
3131

3232
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
3333
compose-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }

0 commit comments

Comments
 (0)