build: update deps
This commit is contained in:
parent
b84e3de3e0
commit
73ef51c8be
2 changed files with 7 additions and 7 deletions
|
@ -85,9 +85,9 @@ dependencies {
|
||||||
// --- SUPPORT ---
|
// --- SUPPORT ---
|
||||||
|
|
||||||
// General
|
// 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.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"
|
implementation "androidx.fragment:fragment-ktx:1.6.1"
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
@ -100,7 +100,7 @@ dependencies {
|
||||||
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
||||||
|
|
||||||
// Lifecycle
|
// 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:$lifecycle_version"
|
||||||
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
|
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
|
||||||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
|
||||||
|
@ -117,7 +117,7 @@ dependencies {
|
||||||
implementation "androidx.preference:preference-ktx:1.2.1"
|
implementation "androidx.preference:preference-ktx:1.2.1"
|
||||||
|
|
||||||
// Database
|
// Database
|
||||||
def room_version = '2.6.0-alpha03'
|
def room_version = '2.6.0-rc01'
|
||||||
implementation "androidx.room:room-runtime:$room_version"
|
implementation "androidx.room:room-runtime:$room_version"
|
||||||
ksp "androidx.room:room-compiler:$room_version"
|
ksp "androidx.room:room-compiler:$room_version"
|
||||||
implementation "androidx.room:room-ktx:$room_version"
|
implementation "androidx.room:room-ktx:$room_version"
|
||||||
|
@ -134,7 +134,7 @@ dependencies {
|
||||||
// Material
|
// Material
|
||||||
// TODO: Exactly figure out the conditions that the 1.7.0 ripple bug occurred so you can just
|
// TODO: Exactly figure out the conditions that the 1.7.0 ripple bug occurred so you can just
|
||||||
// PR a fix.
|
// PR a fix.
|
||||||
implementation "com.google.android.material:material:1.10.0-alpha06"
|
implementation "com.google.android.material:material:1.10.0"
|
||||||
|
|
||||||
// Dependency Injection
|
// Dependency Injection
|
||||||
implementation "com.google.dagger:dagger:$hilt_version"
|
implementation "com.google.dagger:dagger:$hilt_version"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
buildscript {
|
buildscript {
|
||||||
ext {
|
ext {
|
||||||
kotlin_version = '1.9.0'
|
kotlin_version = '1.9.10'
|
||||||
navigation_version = "2.5.3"
|
navigation_version = "2.5.3"
|
||||||
hilt_version = '2.47'
|
hilt_version = '2.47'
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@ buildscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
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 "androidx.navigation.safeargs.kotlin" version "$navigation_version" apply false
|
||||||
id "org.jetbrains.kotlin.android" version "$kotlin_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
|
id "com.google.devtools.ksp" version '1.9.0-1.0.12' apply false
|
||||||
|
|
Loading…
Reference in a new issue