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/build.gradle | |
| 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/build.gradle')
| -rw-r--r-- | android/build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/android/build.gradle b/android/build.gradle index 8f3b90e7f..e4afab73d 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -11,13 +11,13 @@ project.ext.set("developmentBuild", 1) // Whether it is a development build, or // each APK must have a larger `versionCode` than the previous buildscript { - ext.ndk_version = '23.2.8568313' + ext.ndk_version = '25.1.8937393' repositories { google() - jcenter() + mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.0.3' + classpath 'com.android.tools.build:gradle:7.2.2' classpath 'de.undercouch:gradle-download-task:4.1.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files @@ -27,7 +27,7 @@ buildscript { allprojects { repositories { google() - jcenter() + mavenCentral() } } |
