From f5478018c55e2d1f88469cfc60fdfce21b9c0c7f Mon Sep 17 00:00:00 2001 From: OxygenCobalt Date: Sat, 19 Feb 2022 10:12:56 -0700 Subject: [PATCH] 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 --- app/build.gradle | 4 ++-- build.gradle | 2 +- gradle.properties | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 8e06542ac..b540261d0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -73,7 +73,7 @@ dependencies { implementation "androidx.viewpager2:viewpager2:1.1.0-beta01" // 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-java8:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" @@ -85,7 +85,7 @@ dependencies { // Media // TODO: Dumpster this for Media3 - implementation "androidx.media:media:1.4.3" + implementation "androidx.media:media:1.5.0" // Preferences implementation "androidx.preference:preference-ktx:1.2.0" diff --git a/build.gradle b/build.gradle index 105788e01..7436375ca 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { 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 { google() diff --git a/gradle.properties b/gradle.properties index 73a41e5ce..f3bf8f027 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,7 +17,7 @@ org.gradle.jvmargs=-Xmx2048m android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX 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=official -# Stop ExoPlayer from mangling AAR libraries with default abstract methods -android.enableDexingArtifactTransform=false \ No newline at end of file