From fdb14f2582cd07545ab99d5cc79bc026e3b7d4c2 Mon Sep 17 00:00:00 2001 From: Darcy Wong Date: Tue, 16 Jan 2024 09:26:24 +0700 Subject: [PATCH] chore(android): Update targetSdkVersion to 34 --- android/KMAPro/kMAPro/build.gradle | 4 ++-- android/KMEA/app/build.gradle | 4 ++-- android/Samples/KMSample1/app/build.gradle | 4 ++-- android/Samples/KMSample2/app/build.gradle | 4 ++-- android/Tests/KeyboardHarness/app/build.gradle | 4 ++-- android/Tests/keycode/app/build.gradle | 3 +-- oem/firstvoices/android/app/build.gradle | 4 ++-- 7 files changed, 13 insertions(+), 14 deletions(-) diff --git a/android/KMAPro/kMAPro/build.gradle b/android/KMAPro/kMAPro/build.gradle index e12b928a9c7..226e912fbe2 100644 --- a/android/KMAPro/kMAPro/build.gradle +++ b/android/KMAPro/kMAPro/build.gradle @@ -10,7 +10,7 @@ ext.rootPath = '../../' apply from: "$rootPath/version.gradle" android { - compileSdkVersion 33 + compileSdk 34 namespace="com.tavultesoft.kmapro" // Don't compress kmp files so they can be copied via AssetManager @@ -21,7 +21,7 @@ android { defaultConfig { applicationId "com.tavultesoft.kmapro" minSdkVersion 21 - targetSdkVersion 33 + targetSdkVersion 34 //println "===DUMPING PROPERTIES===" //dumpProperties(project) // Use this to dump all external properties for debugging TeamCity integration diff --git a/android/KMEA/app/build.gradle b/android/KMEA/app/build.gradle index 423862b79b8..feed5dd66c7 100644 --- a/android/KMEA/app/build.gradle +++ b/android/KMEA/app/build.gradle @@ -7,12 +7,12 @@ ext.rootPath = '../../' apply from: "$rootPath/version.gradle" android { - compileSdkVersion 33 + compileSdk 34 namespace "com.keyman.engine" defaultConfig { minSdkVersion 21 - targetSdkVersion 33 + targetSdkVersion 34 // VERSION_CODE and VERSION_NAME from version.gradle but Gradle removes them for libraries buildConfigField "String", "KEYMAN_ENGINE_VERSION_NAME", "\""+VERSION_NAME+"\"" diff --git a/android/Samples/KMSample1/app/build.gradle b/android/Samples/KMSample1/app/build.gradle index 7be5ef6b1b5..4f5f778c356 100644 --- a/android/Samples/KMSample1/app/build.gradle +++ b/android/Samples/KMSample1/app/build.gradle @@ -3,7 +3,7 @@ plugins { } android { - compileSdkVersion 33 + compileSdk 34 namespace="com.keyman.kmsample1" // Don't compress kmp files so they can be copied via AssetManager @@ -14,7 +14,7 @@ android { defaultConfig { applicationId "com.keyman.kmsample1" minSdkVersion 21 - targetSdkVersion 33 + targetSdkVersion 34 versionCode 1 versionName "1.0" } diff --git a/android/Samples/KMSample2/app/build.gradle b/android/Samples/KMSample2/app/build.gradle index fc4ca11b949..04e73b84057 100644 --- a/android/Samples/KMSample2/app/build.gradle +++ b/android/Samples/KMSample2/app/build.gradle @@ -3,7 +3,7 @@ plugins { } android { - compileSdkVersion 33 + compileSdk 34 namespace="com.keyman.kmsample2" // Don't compress kmp files so they can be copied via AssetManager @@ -14,7 +14,7 @@ android { defaultConfig { applicationId "com.keyman.kmsample2" minSdkVersion 21 - targetSdkVersion 33 + targetSdkVersion 34 versionCode 1 versionName "1.0" } diff --git a/android/Tests/KeyboardHarness/app/build.gradle b/android/Tests/KeyboardHarness/app/build.gradle index 29dd7de0814..61fe8a53fa5 100644 --- a/android/Tests/KeyboardHarness/app/build.gradle +++ b/android/Tests/KeyboardHarness/app/build.gradle @@ -6,7 +6,7 @@ ext.rootPath = '../../../' apply from: "$rootPath/version.gradle" android { - compileSdkVersion 33 + compileSdk 34 namespace="com.keyman.android.tests.keyboardHarness" // Don't compress kmp files so they can be copied via AssetManager @@ -21,7 +21,7 @@ android { defaultConfig { applicationId "com.keyman.android.tests.keyboardHarness" minSdkVersion 21 - targetSdkVersion 33 + targetSdkVersion 34 // VERSION_CODE and VERSION_NAME from version.gradle versionCode VERSION_CODE as Integer diff --git a/android/Tests/keycode/app/build.gradle b/android/Tests/keycode/app/build.gradle index f5501020e66..0db69e9da2b 100644 --- a/android/Tests/keycode/app/build.gradle +++ b/android/Tests/keycode/app/build.gradle @@ -4,13 +4,12 @@ ext.rootPath = '../../../' apply from: "$rootPath/version.gradle" android { - compileSdkVersion 33 namespace="com.keyman.android.tests.keycode" defaultConfig { applicationId "com.keyman.android.tests.keycode" minSdkVersion 21 - targetSdkVersion 33 + targetSdkVersion 34 // VERSION_CODE and VERSION_NAME from version.gradle versionCode VERSION_CODE as Integer diff --git a/oem/firstvoices/android/app/build.gradle b/oem/firstvoices/android/app/build.gradle index 646152a81a8..43adc17265c 100644 --- a/oem/firstvoices/android/app/build.gradle +++ b/oem/firstvoices/android/app/build.gradle @@ -8,13 +8,13 @@ ext.rootPath = '../../../../android' apply from: "$rootPath/version.gradle" android { - compileSdkVersion 33 + compileSdk 34 namespace="com.firstvoices.keyboards" defaultConfig { applicationId "com.firstvoices.keyboards" minSdkVersion 21 - targetSdkVersion 33 + targetSdkVersion 34 // VERSION_CODE and VERSION_NAME from version.gradle versionCode VERSION_CODE as Integer