Skip to content

Commit

Permalink
Upgrading deps (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines authored Mar 15, 2023
1 parent 026691b commit 414244b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_19
targetCompatibility JavaVersion.VERSION_19
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '19'
jvmTarget = '17'
freeCompilerArgs = ['-Xjvm-default=all-compatibility', '-opt-in=kotlin.RequiresOptIn']
}
buildFeatures {
Expand All @@ -78,9 +78,9 @@ dependencies {

// LiveData
implementation "androidx.compose.runtime:runtime-livedata:1.3.3"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.5.1"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.0"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.0"

// To use Kotlin annotation processing tool
ksp "androidx.room:room-compiler:2.5.0"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ buildscript {
}// Top-level build file where you can add configuration options common to all sub-projects/modules.

plugins {
id 'com.android.application' version '8.1.0-alpha07' apply false
id 'com.android.library' version '8.1.0-alpha07' apply false
id 'com.android.application' version '8.1.0-alpha09' apply false
id 'com.android.library' version '8.1.0-alpha09' apply false
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
id "com.github.ben-manes.versions" version "0.42.0"
id 'org.jmailen.kotlinter' version "3.13.0" apply false
Expand Down

0 comments on commit 414244b

Please sign in to comment.