]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - build/android/build.gradle
Add online content repository
[dragonfireclient.git] / build / android / build.gradle
index 3ce11bec3bf28934312c9d80b16e3f778c94c0c2..b4dfd90852ec9ba619f70394479f46b10024a71e 100644 (file)
@@ -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 13
+               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 {
                }
        }
 }
-