deps: upgrade deps

Round and round
Lifecycle -> 2.4.1
Media -> 1.5.0
Navigation -> 2.4.1// TODO: Downgrade back to 2.4.1 when it is out
This commit is contained in:
OxygenCobalt 2022-02-19 10:12:56 -07:00
parent ddc6428455
commit f5478018c5
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
3 changed files with 5 additions and 5 deletions

View file

@ -73,7 +73,7 @@ dependencies {
implementation "androidx.viewpager2:viewpager2:1.1.0-beta01" implementation "androidx.viewpager2:viewpager2:1.1.0-beta01"
// Lifecycle // Lifecycle
def lifecycle_version = "2.4.0" def lifecycle_version = "2.4.1"
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"
@ -85,7 +85,7 @@ dependencies {
// Media // Media
// TODO: Dumpster this for Media3 // TODO: Dumpster this for Media3
implementation "androidx.media:media:1.4.3" implementation "androidx.media:media:1.5.0"
// Preferences // Preferences
implementation "androidx.preference:preference-ktx:1.2.0" implementation "androidx.preference:preference-ktx:1.2.0"

View file

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.6.10' ext.kotlin_version = '1.6.10'
ext.navigation_version = "2.5.0-alpha01" // TODO: Downgrade back to 2.4.1 when it is out ext.navigation_version = "2.4.1"
repositories { repositories {
google() google()

View file

@ -17,7 +17,7 @@ org.gradle.jvmargs=-Xmx2048m
android.useAndroidX=true android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX # Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true android.enableJetifier=true
# Stop ExoPlayer from mangling AAR libraries with default abstract methods
android.enableDexingArtifactTransform=false
# Kotlin code style for this project: "official" or "obsolete": # Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official kotlin.code.style=official
# Stop ExoPlayer from mangling AAR libraries with default abstract methods
android.enableDexingArtifactTransform=false