diff options
author | Muhammad Rifqi Priyo Susanto <muhammadrifqipriyosusanto@gmail.com> | 2021-01-21 05:31:59 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 22:31:59 +0000 |
commit | cc449435287472fbf8b7e1f2231b97765d766625 (patch) | |
tree | 59f8a4d0f342bf2d7fc3c6f446228b037913a365 /build/android/native/build.gradle | |
parent | 6693a4b30e37157becf79b4b20e991271a425609 (diff) | |
download | minetest-cc449435287472fbf8b7e1f2231b97765d766625.tar.gz minetest-cc449435287472fbf8b7e1f2231b97765d766625.tar.bz2 minetest-cc449435287472fbf8b7e1f2231b97765d766625.zip |
Android: Update Gradle, NDK, Build Tools, and SQLite version (#10833)
Diffstat (limited to 'build/android/native/build.gradle')
-rw-r--r-- | build/android/native/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/android/native/build.gradle b/build/android/native/build.gradle index 69e1cf461..8ea6347b3 100644 --- a/build/android/native/build.gradle +++ b/build/android/native/build.gradle @@ -3,8 +3,8 @@ apply plugin: 'de.undercouch.download' android { compileSdkVersion 29 - buildToolsVersion '30.0.2' - ndkVersion '21.3.6528147' + buildToolsVersion '30.0.3' + ndkVersion '22.0.7026061' defaultConfig { minSdkVersion 16 targetSdkVersion 29 @@ -71,7 +71,7 @@ task getDeps(dependsOn: downloadDeps, type: Copy) { } // get sqlite -def sqlite_ver = '3320200' +def sqlite_ver = '3340000' task downloadSqlite(dependsOn: getDeps, type: Download) { src 'https://www.sqlite.org/2020/sqlite-amalgamation-' + sqlite_ver + '.zip' dest new File(buildDir, 'sqlite.zip') |