From d34fcab30c7b2e40d7b0bcad2dfab24d3b44d6a5 Mon Sep 17 00:00:00 2001 From: Prathamesh More Date: Thu, 21 Apr 2022 17:03:57 +0530 Subject: [PATCH] Updated targetSdk to API 32 & Updated dependencies --- app/build.gradle | 10 +++++----- appthemehelper/build.gradle | 4 ++-- build.gradle | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index adafb2d9e..a13dcc370 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,11 +5,11 @@ apply plugin: "androidx.navigation.safeargs.kotlin" apply plugin: 'kotlin-parcelize' android { - compileSdk 31 + compileSdk 32 defaultConfig { minSdk 21 - targetSdk 31 + targetSdk 32 vectorDrawables.useSupportLibrary = true @@ -99,7 +99,7 @@ dependencies { implementation 'androidx.palette:palette-ktx:1.0.0' //Cast Dependencies - implementation 'androidx.mediarouter:mediarouter:1.3.0-rc01' + implementation 'androidx.mediarouter:mediarouter:1.3.0' implementation 'com.google.android.gms:play-services-cast-framework:21.0.1' //WebServer by NanoHttpd implementation "org.nanohttpd:nanohttpd:2.3.1" @@ -113,7 +113,7 @@ dependencies { implementation "androidx.room:room-ktx:$room_version" kapt "androidx.room:room-compiler:$room_version" - def lifecycle_version = "2.4.1" + def lifecycle_version = "2.5.0-beta01" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version" @@ -172,5 +172,5 @@ dependencies { implementation 'cat.ereza:customactivityoncrash:2.3.0' implementation 'me.tankery.lib:circularSeekBar:1.3.2' debugImplementation 'com.github.amitshekhariitbhu:Android-Debug-Database:1.0.6' - debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.8.1' + //debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.9.1' } \ No newline at end of file diff --git a/appthemehelper/build.gradle b/appthemehelper/build.gradle index b703dfbc1..cbb0934dd 100644 --- a/appthemehelper/build.gradle +++ b/appthemehelper/build.gradle @@ -1,11 +1,11 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { - compileSdk 31 + compileSdk 32 defaultConfig { minSdk 21 - targetSdk 31 + targetSdk 32 } buildTypes { release { diff --git a/build.gradle b/build.gradle index ced061342..3d98c2207 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { ext { kotlin_version = '1.6.21' - navigation_version = '2.4.2' + navigation_version = '2.5.0-beta01' mdc_version = '1.6.0-rc01' preference_version = '1.2.0' appcompat_version = '1.4.1'