1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-29 06:35:20 +01:00

Android: update tools (gradle, NDK) & prepare to switch to clang

This commit is contained in:
Loic Blot
2018-03-11 16:52:53 +01:00
parent cf8d579abc
commit 69247ca223
4 changed files with 15 additions and 7 deletions

View File

@@ -1,9 +1,11 @@
buildscript {
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:1.5.0"
classpath "com.android.tools.build:gradle:3.0.1"
}
}
@@ -11,7 +13,7 @@ apply plugin: "com.android.application"
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
buildToolsVersion "26.0.2"
defaultConfig {
versionCode 17
@@ -20,6 +22,12 @@ android {
targetSdkVersion 14
applicationId "net.minetest.minetest"
manifestPlaceholders = [ package: "net.minetest.minetest", project: project.name ]
ndk {
// Specifies the ABI configurations of your native
// libraries Gradle should build and package with your APK.
abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a',
'arm64-v8a'
}
}
lintOptions {