Skip to content

Commit

Permalink
ankidroid#14258 Fixed this issue. (ankidroid#14368)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Aditya13s authored Sep 2, 2023
1 parent a4cbca0 commit 1a9efa6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions AnkiDroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down
6 changes: 3 additions & 3 deletions api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"'
}
Expand Down

0 comments on commit 1a9efa6

Please sign in to comment.