]> gitweb.fperrin.net Git - Dictionary.git/commitdiff
Newer versions of build tools, support library etc.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Wed, 10 Jan 2018 19:30:47 +0000 (20:30 +0100)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Wed, 10 Jan 2018 19:30:47 +0000 (20:30 +0100)
build.gradle

index e89947acaaa7c47de9dca83859c5e14f4fd0bb5b..c438d1674f008c590bb11cffc5fb975d3207ff7f 100644 (file)
@@ -12,13 +12,14 @@ apply plugin: 'com.android.application'
 
 repositories {
     jcenter()
+    google()
 }
 configurations {
     smallicu
 }
 dependencies {
-    compile 'com.android.support:appcompat-v7:25.3.1'
-    compile 'com.android.support:design:25.3.1'
+    compile 'com.android.support:appcompat-v7:25.4.0'
+    compile 'com.android.support:design:25.4.0'
     // Note: you can just replace "smallicu" by compile
     // and remove the "compile files" part if you do not
     // care about the size of the apk
@@ -41,8 +42,8 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) {
 def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "Util"
 
 android {
-    compileSdkVersion 25
-    buildToolsVersion "27.0.1"
+    compileSdkVersion 26
+    buildToolsVersion "27.0.3"
     lintOptions {
         disable "MissingTranslation"
     }
@@ -77,7 +78,7 @@ android {
     }
     defaultConfig {
         applicationId 'de.reimardoeffinger.quickdic'
-        targetSdkVersion 25
+        targetSdkVersion 26
         resConfigs "de", "es", "fr", "it", "ja", "pt", "pt-rBR", "ru"
     }
 }