Skip to content

Commit

Permalink
Upgrading deps. (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines authored Dec 1, 2023
1 parent c46bc76 commit c387001
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

android {
buildToolsVersion = "34.0.0-rc3"
buildToolsVersion = "34.0.0"
compileSdk 34

defaultConfig {
Expand Down Expand Up @@ -77,25 +77,25 @@ dependencies {
implementation 'com.github.alorma:compose-settings-ui-m3:1.0.2'

// To use Kotlin annotation processing tool
ksp 'androidx.room:room-compiler:2.6.0'
ksp 'androidx.room:room-compiler:2.6.1'

implementation 'androidx.room:room-runtime:2.6.0'
annotationProcessor 'androidx.room:room-compiler:2.6.0'
implementation 'androidx.room:room-runtime:2.6.1'
annotationProcessor 'androidx.room:room-compiler:2.6.1'

// optional - Kotlin Extensions and Coroutines support for Room
implementation('androidx.room:room-ktx:2.6.0')
implementation 'androidx.room:room-ktx:2.6.1'

// optional - Test helpers
testImplementation 'androidx.room:room-testing:2.6.0'
testImplementation 'androidx.room:room-testing:2.6.1'

// optional - Paging 3 Integration
implementation 'androidx.room:room-paging:2.6.0'
implementation 'androidx.room:room-paging:2.6.1'

// LiveData
implementation 'androidx.compose.runtime:runtime-livedata:1.5.4'
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.2"

implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.21'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.20'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.compose.ui:ui:1.5.4'
implementation 'androidx.compose.material3:material3:1.1.2'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
}

plugins {
id 'com.android.application' version '8.1.4' apply false
id 'com.android.library' version '8.1.4' apply false
id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.20' apply false
id 'org.jmailen.kotlinter' version "4.1.0" apply false
id 'com.google.devtools.ksp' version "1.9.20-1.0.14" apply false
Expand Down

0 comments on commit c387001

Please sign in to comment.