From 1a9efa60163dae3dc6e9d11c611aeff805ca0df6 Mon Sep 17 00:00:00 2001 From: Aditya <77337791+Aditya13s@users.noreply.github.com> Date: Sat, 2 Sep 2023 14:40:53 +0530 Subject: [PATCH] #14258 Fixed this issue. (#14368) * Hide the Floating Action Button * Removed the Code of the Floating Action Button in CardBrowser.kt * fixing lint debug failed problem * Fixed the Issue:- Deprecation: compileSdkVersion --- AnkiDroid/build.gradle | 6 +++--- api/build.gradle | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/AnkiDroid/build.gradle b/AnkiDroid/build.gradle index 1af369055070..fbed0bc717f8 100644 --- a/AnkiDroid/build.gradle +++ b/AnkiDroid/build.gradle @@ -35,7 +35,7 @@ static def gitCommitHash() { android { namespace "com.ichi2.anki" - compileSdkVersion 33 // change api compileSdkVersion at the same time + compileSdk 33 // change api compileSdkVersion at the same time buildFeatures { buildConfig = true @@ -75,12 +75,12 @@ android { // needed for upgrades to be offered correctly. versionCode=21700101 versionName="2.17alpha1" - minSdkVersion 23 + minSdk 23 // change api/build.gradle // change robolectricDownloader.gradle // After #13695: change .tests_emulator.yml // noinspection OldTargetApi - targetSdkVersion 33 + targetSdk 33 testApplicationId "com.ichi2.anki.tests" vectorDrawables.useSupportLibrary = true testInstrumentationRunner 'com.ichi2.testutils.NewCollectionPathTestRunner' diff --git a/api/build.gradle b/api/build.gradle index 2a3f6301d1a9..ea49badff5b2 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -10,16 +10,16 @@ version = "2.0.0" android { namespace 'com.ichi2.anki.api' - compileSdkVersion 33 + compileSdk 33 buildFeatures { buildConfig = true } defaultConfig { - minSdkVersion 16 + minSdk 16 //noinspection OldTargetApi - targetSdkVersion 32 + targetSdk 32 buildConfigField "String", "READ_WRITE_PERMISSION", '"com.ichi2.anki.permission.READ_WRITE_DATABASE"' buildConfigField "String", "AUTHORITY", '"com.ichi2.anki.flashcards"' }