From bb04298b9f8eebf70492142ea9c546338d2a06a6 Mon Sep 17 00:00:00 2001 From: Smooth-E Date: Thu, 19 Sep 2024 05:28:08 +0300 Subject: [PATCH] chore: Refactor and update Gradle configurations --- app/build.gradle | 3 --- hidden-api-stub/build.gradle | 2 +- widget-factory/build.gradle | 5 +---- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 86b8149..2e12623 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -45,10 +45,7 @@ android { dependencies { implementation 'androidx.appcompat:appcompat:1.7.0' - - // com.google.android.material:material:1.12.0 has a broken collapsing toolbar scrim implementation 'com.google.android.material:material:1.12.0' - implementation 'androidx.core:core-ktx:1.13.1' implementation 'androidx.preference:preference-ktx:1.2.1' diff --git a/hidden-api-stub/build.gradle b/hidden-api-stub/build.gradle index fc7ae6b..be5595b 100644 --- a/hidden-api-stub/build.gradle +++ b/hidden-api-stub/build.gradle @@ -4,7 +4,7 @@ plugins { android { namespace "android" - compileSdk 33 + compileSdk 34 compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 diff --git a/widget-factory/build.gradle b/widget-factory/build.gradle index cd7fa33..c05822f 100644 --- a/widget-factory/build.gradle +++ b/widget-factory/build.gradle @@ -13,8 +13,8 @@ android { } defaultConfig { - minSdk 30 targetSdk 34 + minSdk 30 } kotlinOptions { @@ -25,10 +25,7 @@ android { dependencies { implementation 'androidx.core:core-ktx:1.13.1' implementation 'androidx.appcompat:appcompat:1.7.0' - - // com.google.android.material:material:1.12.0 has a broken collapsing toolbar scrim implementation 'com.google.android.material:material:1.12.0' - implementation 'androidx.preference:preference-ktx:1.2.1' implementation 'androidx.core:core-ktx:1.13.1' }