X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=build.gradle;h=c438d1674f008c590bb11cffc5fb975d3207ff7f;hb=725f61be57cbd01f60466ad88e25b60d2d901ad2;hp=ec54900cf29f6c38f77a1eb511071402882cd70e;hpb=ce75d9ee985a0823859307f34805e49c87d03298;p=Dictionary.git diff --git a/build.gradle b/build.gradle index ec54900..c438d16 100644 --- a/build.gradle +++ b/build.gradle @@ -1,9 +1,10 @@ buildscript { repositories { jcenter() + google() } dependencies { - classpath 'com.android.tools.build:gradle:2.3.1' + classpath 'com.android.tools.build:gradle:3.0.1' } } @@ -11,13 +12,14 @@ apply plugin: 'com.android.application' repositories { jcenter() + google() } configurations { smallicu } dependencies { - compile 'com.android.support:appcompat-v7:25.3.0' - compile 'com.android.support:design:25.3.0' + 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 @@ -40,8 +42,8 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "Util" android { - compileSdkVersion 25 - buildToolsVersion "25.0.2" + compileSdkVersion 26 + buildToolsVersion "27.0.3" lintOptions { disable "MissingTranslation" } @@ -76,6 +78,7 @@ android { } defaultConfig { applicationId 'de.reimardoeffinger.quickdic' - targetSdkVersion 23 + targetSdkVersion 26 + resConfigs "de", "es", "fr", "it", "ja", "pt", "pt-rBR", "ru" } }