Skip to content

Commit

Permalink
updated gradle and dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob3075 committed Dec 7, 2023
1 parent 1377ff5 commit 9fdefe9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 18 deletions.
2 changes: 0 additions & 2 deletions core/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ android {
dependencies {
implementation(project(":core:models"))

implementation(libs.androidx.lifecycle.runtimeKtx)

// OAuth
implementation(libs.appAuth)

Expand Down
27 changes: 11 additions & 16 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[versions]
androidGradlePlugin = "8.1.1"
androidxCore = "1.10.1" # https://developer.android.com/jetpack/androidx/releases/core
androidxActivity = "1.7.2"
androidGradlePlugin = "8.2.0"
androidxCore = "1.12.0" # https://developer.android.com/jetpack/androidx/releases/core
androidxActivity = "1.8.1"
androidxAppCompat = "1.6.1" # https://developer.android.com/jetpack/androidx/releases/appcompat
androidMaterial = "1.9.0" # https://github.com/material-components/material-components-android
androidMaterial = "1.10.0" # https://github.com/material-components/material-components-android
androidxCoreSplashscreen = "1.0.1" # https://developer.android.com/jetpack/androidx/releases/core
androidxLifecycle = "2.6.1"
androidxLifecycle = "2.6.2"
dataStore = "1.0.0"
workRuntimeKtx = "2.8.1"
workRuntimeKtx = "2.9.0"

kotlin = "1.9.10" # https://kotlinlang.org/
kotlinxCoroutines = "1.7.3" # https://github.com/Kotlin/kotlinx.coroutines
Expand All @@ -16,25 +16,24 @@ kotlinxDatetime = "0.4.1" # https://github.com/Kotlin/kotlinx-datetime
kotlinxCollectionsImmutable = "0.3.5" # https://github.com/Kotlin/kotlinx.collections.immutable
ksp = "1.9.10-1.0.13" # https://goo.gle/ksp

composeBom = "2023.08.00" # https://developer.android.com/jetpack/androidx/releases/compose
composeBom = "2023.10.01" # https://developer.android.com/jetpack/androidx/releases/compose
composeCompiler = "1.5.3" # https://developer.android.com/jetpack/androidx/releases/compose-compiler

accompanistPager = "0.32.0"

hilt = "2.48" # https://github.com/google/dagger
hiltNavigationCompose = "1.0.0"
hiltWork = "1.0.0"
hiltNavigationCompose = "1.1.0"
hiltWork = "1.1.0"

roomCompiler = "2.5.2"
roomKtx = "2.5.2"
roomCompiler = "2.6.1"
roomKtx = "2.6.1"

okhttp = "4.11.0" # https://square.github.io/okhttp/
retrofit = "2.9.0"
retrofitKotlinxSerializationJson = "1.0.0" # https://github.com/JakeWharton/retrofit2-kotlinx-serialization-converter/

junit4 = "4.13.2" # https://junit.org/junit4/
junit5 = "5.10.0" # https://junit.org/junit5/
androidxEspresso = "3.5.0"
androidxTestCore = "1.5.0"
androidxTestExt = "1.1.5" # https://developer.android.com/testing
androidxTestRunner = "1.5.2"
Expand Down Expand Up @@ -72,10 +71,6 @@ androidx-dataStore-preferences = { module = "androidx.datastore:datastore-prefer

androidx-work-runtime-ktx = { module = "androidx.work:work-runtime-ktx", version.ref = "workRuntimeKtx" }

androidx-lifecycle-runtimeKtx = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "androidxLifecycle" }
androidx-lifecycle-runtimeCompose = { module = "androidx.lifecycle:lifecycle-runtime-compose", version.ref = "androidxLifecycle" }
androidx-lifecycle-viewModelCompose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "androidxLifecycle" }

kotlin-plugin-gradle = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
kotlin-plugin-serialization = { module = "org.jetbrains.kotlin:kotlin-serialization", version.ref = "kotlin" }
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8", version.ref = "kotlin" }
Expand Down

0 comments on commit 9fdefe9

Please sign in to comment.