Skip to content

Commit

Permalink
Upgrading deps (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines authored Mar 31, 2023
1 parent 5323726 commit 3641abd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ dependencies {
implementation 'com.github.alorma:compose-settings-ui-m3:0.25.0'

// To use Kotlin annotation processing tool
ksp "androidx.room:room-compiler:2.5.0"
ksp "androidx.room:room-compiler:2.5.1"

implementation "androidx.room:room-runtime:2.5.0"
annotationProcessor "androidx.room:room-compiler:2.5.0"
implementation "androidx.room:room-runtime:2.5.1"
annotationProcessor "androidx.room:room-compiler:2.5.1"

// optional - Kotlin Extensions and Coroutines support for Room
implementation("androidx.room:room-ktx:2.5.0")
implementation("androidx.room:room-ktx:2.5.1")

// optional - Test helpers
testImplementation "androidx.room:room-testing:2.5.0"
testImplementation "androidx.room:room-testing:2.5.1"

// optional - Paging 3 Integration
implementation "androidx.room:room-paging:2.5.0"
implementation "androidx.room:room-paging:2.5.1"

// LiveData
implementation "androidx.compose.runtime:runtime-livedata:1.4.0"
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.0-alpha10' apply false
id 'com.android.library' version '8.1.0-alpha10' apply false
id 'com.android.application' version '8.1.0-alpha11' apply false
id 'com.android.library' version '8.1.0-alpha11' apply false
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
id 'org.jmailen.kotlinter' version "3.13.0" apply false
id 'com.google.devtools.ksp' version "1.8.10-1.0.9" apply false
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pluginManagement {
mavenCentral()
}
plugins {
id 'com.android.application' version '8.1.0-alpha10'
id 'com.android.library' version '8.1.0-alpha10'
id 'com.android.application' version '8.1.0-alpha11'
id 'com.android.library' version '8.1.0-alpha11'
id 'org.jetbrains.kotlin.android' version '1.6.21'
}
}
Expand Down

0 comments on commit 3641abd

Please sign in to comment.