diff options
| author | Muhammad Rifqi Priyo Susanto <muhammadrifqipriyosusanto@gmail.com> | 2023-02-18 06:03:28 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-18 00:03:28 +0100 |
| commit | c1e430ef68271b8769ae8852b2b4a2fa0fb7ccac (patch) | |
| tree | ce76b9443c07b34493abc0f03329874822409c81 /android/app | |
| parent | 75e6cc190a9b1cc1c3aae059502801365c3a412b (diff) | |
| download | minetest-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/app')
| -rw-r--r-- | android/app/build.gradle | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle index 407767249..0c7884e72 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -1,12 +1,13 @@ apply plugin: 'com.android.application' + android { - compileSdkVersion 32 - buildToolsVersion '32.0.0' + compileSdkVersion 33 + buildToolsVersion '33.0.2' ndkVersion "$ndk_version" defaultConfig { applicationId 'net.minetest.minetest' - minSdkVersion 16 - targetSdkVersion 32 + minSdkVersion 21 + targetSdkVersion 33 versionName "${versionMajor}.${versionMinor}.${versionPatch}" versionCode project.versionCode } @@ -112,5 +113,5 @@ android.applicationVariants.all { variant -> dependencies { implementation project(':native') - implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'androidx.appcompat:appcompat:1.6.1' } |
