Skip to content

Commit

Permalink
build: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
OxygenCobalt committed Oct 17, 2023
1 parent b84e3de commit 73ef51c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ dependencies {
// --- SUPPORT ---

// General
implementation "androidx.core:core-ktx:1.10.1"
implementation "androidx.core:core-ktx:1.12.0"
implementation "androidx.appcompat:appcompat:1.6.1"
implementation "androidx.activity:activity-ktx:1.7.2"
implementation "androidx.activity:activity-ktx:1.8.0"
implementation "androidx.fragment:fragment-ktx:1.6.1"

// Components
Expand All @@ -100,7 +100,7 @@ dependencies {
implementation "androidx.viewpager2:viewpager2:1.0.0"

// Lifecycle
def lifecycle_version = "2.6.1"
def lifecycle_version = "2.6.2"
implementation "androidx.lifecycle:lifecycle-common:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
Expand All @@ -117,7 +117,7 @@ dependencies {
implementation "androidx.preference:preference-ktx:1.2.1"

// Database
def room_version = '2.6.0-alpha03'
def room_version = '2.6.0-rc01'
implementation "androidx.room:room-runtime:$room_version"
ksp "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"
Expand All @@ -134,7 +134,7 @@ dependencies {
// Material
// TODO: Exactly figure out the conditions that the 1.7.0 ripple bug occurred so you can just
// PR a fix.
implementation "com.google.android.material:material:1.10.0-alpha06"
implementation "com.google.android.material:material:1.10.0"

// Dependency Injection
implementation "com.google.dagger:dagger:$hilt_version"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
kotlin_version = '1.9.0'
kotlin_version = '1.9.10'
navigation_version = "2.5.3"
hilt_version = '2.47'
}
Expand All @@ -12,7 +12,7 @@ buildscript {
}

plugins {
id "com.android.application" version "8.1.0" apply false
id "com.android.application" version '8.1.2' apply false
id "androidx.navigation.safeargs.kotlin" version "$navigation_version" apply false
id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false
id "com.google.devtools.ksp" version '1.9.0-1.0.12' apply false
Expand Down

0 comments on commit 73ef51c

Please sign in to comment.