Skip to content

Commit

Permalink
Upgrading some deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Mar 9, 2022
1 parent 55f2954 commit 601a2e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ android {
}

dependencies {
def room_version = "2.4.1"
def room_version = "2.4.2"
def accompanist_version = "0.22.0-rc"

implementation 'com.squareup.okhttp3:logging-interceptor:4.2.1'
Expand All @@ -69,10 +69,10 @@ dependencies {

// LiveData
implementation "androidx.compose.runtime:runtime-livedata:$compose_version"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.4.0"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.4.1"

// To use Kotlin annotation processing tool (kapt)
kapt("androidx.room:room-compiler:2.4.1")
kapt("androidx.room:room-compiler:$room_version")

implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
Expand All @@ -89,8 +89,8 @@ dependencies {
implementation "androidx.compose.material:material-icons-extended:$compose_version"
implementation 'org.ocpsoft.prettytime:prettytime:4.0.1.Final'
implementation 'io.coil-kt:coil-compose:1.3.1'
implementation "androidx.navigation:navigation-compose:2.5.0-alpha01"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0"
implementation "androidx.navigation:navigation-compose:2.5.0-alpha03"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2"
testImplementation "androidx.arch.core:core-testing:2.1.0"
implementation "com.squareup.retrofit2:retrofit:2.9.0"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ buildscript {
}// Top-level build file where you can add configuration options common to all sub-projects/modules.

plugins {
id 'com.android.application' version '7.3.0-alpha01' apply false
id 'com.android.library' version '7.3.0-alpha01' apply false
id 'com.android.application' version '7.3.0-alpha04' apply false
id 'com.android.library' version '7.3.0-alpha04' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id "org.jlleitschuh.gradle.ktlint" version "10.2.1"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Jan 01 13:02:52 EST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 601a2e9

Please sign in to comment.