aboutsummaryrefslogtreecommitdiff
path: root/android/native
diff options
context:
space:
mode:
authorMuhammad Rifqi Priyo Susanto <muhammadrifqipriyosusanto@gmail.com>2023-02-18 06:03:28 +0700
committerGitHub <noreply@github.com>2023-02-18 00:03:28 +0100
commitc1e430ef68271b8769ae8852b2b4a2fa0fb7ccac (patch)
treece76b9443c07b34493abc0f03329874822409c81 /android/native
parent75e6cc190a9b1cc1c3aae059502801365c3a412b (diff)
downloadminetest-c1e430ef68271b8769ae8852b2b4a2fa0fb7ccac.tar.xz
Android: Increase minimum SDK version to 21
Target/compiled SDK version is increased to 33. Build Tools, NDK, and Gradle are also updated.
Diffstat (limited to 'android/native')
-rw-r--r--android/native/build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/android/native/build.gradle b/android/native/build.gradle
index dc923bf3d..6caec1379 100644
--- a/android/native/build.gradle
+++ b/android/native/build.gradle
@@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
apply plugin: 'de.undercouch.download'
android {
- compileSdkVersion 32
- buildToolsVersion '32.0.0'
+ compileSdkVersion 33
+ buildToolsVersion '33.0.2'
ndkVersion "$ndk_version"
defaultConfig {
- minSdkVersion 16
- targetSdkVersion 32
+ minSdkVersion 21
+ targetSdkVersion 33
externalNativeBuild {
ndkBuild {
arguments '-j' + Runtime.getRuntime().availableProcessors(),