diff --git a/AnkiDroid/build.gradle b/AnkiDroid/build.gradle index 1af3690550..fbed0bc717 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 2a3f6301d1..ea49badff5 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"' }