Upgrading deps (#114)

This commit is contained in:
Dessalines 2023-03-31 14:10:43 -04:00 committed by GitHub
parent 53237262b3
commit 3641abd820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View File

@ -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"

View File

@ -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

View File

@ -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'
}
}