0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-19 19:42:17 +02:00

#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
This commit is contained in:
Aditya 2023-09-02 14:40:53 +05:30 committed by GitHub
parent a4cbca0469
commit 1a9efa6016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -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'

View File

@ -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"'
}