Skip to content

Commit

Permalink
Library updates
Browse files Browse the repository at this point in the history
  • Loading branch information
motorro committed Dec 30, 2022
1 parent ae1ae0e commit 42ac00a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 17 deletions.
7 changes: 2 additions & 5 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@ image:
file: .gitpod.Dockerfile

tasks:
- before: |
export GRADLE_USER_HOME="/workspace/.gradle"
export M2_HOME="/workspace/.m2"
- init: |
./gradlew build
- before: export GRADLE_USER_HOME="/workspace/.gradle"; export M2_HOME="/workspace/.m2"; export KONAN_DATA_DIR="workspace/.konan"
- init: git fetch --tags && ./gradlew runUnitTests :lce:assemble :welcome:assemble

jetbrains:
intellij:
Expand Down
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ allprojects {
ext {
versionCode = buildVersionCode()
versionName = buildVersionName()
androidBuildToolsVersion = '32.0.0'
androidBuildToolsVersion = '33.0.0'
androidMinSdkVersion = 24
androidTargetSdkVersion = 32
androidCompileSdkVersion = 32
androidTargetSdkVersion = 33
androidCompileSdkVersion = 33

developerId = 'motorro'
developerName = 'Nikolai Kotchetkov'
Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
kotlin = "1.7.10"
kotlin = "1.7.20"
coroutines = "1.6.4"
compose = "1.2.1"
compose_compiler = "1.3.0"
hilt = "2.42"
compose = "1.3.1"
compose_compiler = "1.3.2"
hilt = "2.44"

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

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

androidx-core = { module = "androidx.core:core-ktx", version = "1.7.0" }
androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version = "2.4.1" }
androidx-lifecycle-livedata = { module = "androidx.lifecycle:lifecycle-livedata-ktx", version = "2.4.1" }
androidx-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version = "2.4.1" }
androidx-core = { module = "androidx.core:core-ktx", version = "1.9.0" }
androidx-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version = "2.5.1" }
androidx-lifecycle-livedata = { module = "androidx.lifecycle:lifecycle-livedata-ktx", version = "2.5.1" }
androidx-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version = "2.5.1" }

compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
compose-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
Expand Down

0 comments on commit 42ac00a

Please sign in to comment.