summaryrefslogtreecommitdiff
path: root/android/app/build.gradle
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2021-11-27 00:10:13 +0000
committerGitHub <noreply@github.com>2021-11-27 00:10:13 +0000
commit51cfb57b4da8e71e39380bf5bf3e19414c779e12 (patch)
tree5ba84131a1cb3d3795fe62bb58f20bf50db7d396 /android/app/build.gradle
parent413be76c63309266d3d271f01cc74385067d7263 (diff)
downloadminetest-51cfb57b4da8e71e39380bf5bf3e19414c779e12.tar.gz
minetest-51cfb57b4da8e71e39380bf5bf3e19414c779e12.tar.bz2
minetest-51cfb57b4da8e71e39380bf5bf3e19414c779e12.zip
Update to Android target SDK 30 (#11746)
Diffstat (limited to 'android/app/build.gradle')
-rw-r--r--android/app/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 234868f92..e8ba95722 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 29
+ compileSdkVersion 30
buildToolsVersion '30.0.3'
ndkVersion "$ndk_version"
defaultConfig {
applicationId 'net.minetest.minetest'
minSdkVersion 16
- targetSdkVersion 29
+ targetSdkVersion 30
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
versionCode project.versionCode
}