X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=build%2Fandroid%2Fbuild.gradle;h=b4dfd90852ec9ba619f70394479f46b10024a71e;hb=87ad4d8e7f25210cd28d9f2b372aa00aa3dab929;hp=391e250ad3dae43c27c45c28ee6450de3ffd0cc7;hpb=854d9e3745304f5f420805818de99e5e6d1b2596;p=dragonfireclient.git diff --git a/build/android/build.gradle b/build/android/build.gradle index 391e250ad..b4dfd9085 100644 --- a/build/android/build.gradle +++ b/build/android/build.gradle @@ -1,25 +1,33 @@ buildscript { repositories { mavenCentral() + jcenter() + google() } dependencies { - classpath "com.android.tools.build:gradle:1.5.0" + classpath "com.android.tools.build:gradle:3.0.1" } } apply plugin: "com.android.application" android { - compileSdkVersion 23 - buildToolsVersion "23.0.3" + compileSdkVersion 25 + buildToolsVersion "26.0.2" defaultConfig { - versionCode 14 + versionCode 17 versionName "${System.env.VERSION_STR}.${versionCode}" - minSdkVersion 9 - targetSdkVersion 9 + minSdkVersion 14 + 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 { @@ -46,4 +54,3 @@ android { } } } -