diff options
author | Muhammad Rifqi Priyo Susanto <muhammadrifqipriyosusanto@gmail.com> | 2022-10-31 20:19:30 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-31 14:19:30 +0100 |
commit | fb3085a2c593e0671e3322fe0e7d0914a052acef (patch) | |
tree | d1e6b4136374bcc243cb783f546654f49da7b6c1 /android/native | |
parent | 987277de52633208fae027e9d3bd0f7affa79a66 (diff) | |
download | minetest-fb3085a2c593e0671e3322fe0e7d0914a052acef.tar.xz |
Android: Increase target/compiled SDK version to 32 (#12911)
Build Tools, NDK, and Gradle are also updated.
Repositories is changed from jcenter() to mavenCentral().
Diffstat (limited to 'android/native')
-rw-r--r-- | android/native/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/android/native/build.gradle b/android/native/build.gradle index 90e4fe2e7..dc923bf3d 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 30 - buildToolsVersion '30.0.3' + compileSdkVersion 32 + buildToolsVersion '32.0.0' ndkVersion "$ndk_version" defaultConfig { minSdkVersion 16 - targetSdkVersion 30 + targetSdkVersion 32 externalNativeBuild { ndkBuild { arguments '-j' + Runtime.getRuntime().availableProcessors(), |