X-Git-Url: http://gitweb.fperrin.net/?p=Dictionary.git;a=blobdiff_plain;f=build.gradle;h=12f457a5e2ef8c27f65d13b6e78b879211ed838d;hp=d9143a9f8a4f58d63fda78c35c5517fa4c4c15a1;hb=44700916fc1d55c17498a9a9224b07e247a498ee;hpb=c1106a158eb4d03e930ae3a55c0ffc0c50ee213c diff --git a/build.gradle b/build.gradle index d9143a9..12f457a 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:3.0.0' + classpath 'com.android.tools.build:gradle:3.1.3' } } @@ -12,18 +12,19 @@ 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' - // Note: you can just replace "smallicu" by compile + implementation 'com.android.support:appcompat-v7:25.3.1' + implementation 'com.android.support:design:25.3.1' + // Note: you can just replace "smallicu" by implementation // and remove the "compile files" part if you do not // care about the size of the apk smallicu 'com.ibm.icu:icu4j:57.1' - compile files("$buildDir/icu4j-57.1.small.jar") { + implementation files("$buildDir/icu4j-57.1.small.jar") { builtBy 'makesmallicu' } } @@ -41,8 +42,8 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "Util" android { - compileSdkVersion 25 - buildToolsVersion "26.0.2" + compileSdkVersion 26 + buildToolsVersion "27.0.3" lintOptions { disable "MissingTranslation" } @@ -63,9 +64,6 @@ android { assets.srcDirs = ['assets'] } - // Move the tests to tests/java, tests/res, etc... - instrumentTest.setRoot('tests') - // Move the build types to build-types/ // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ... // This moves them out of them default location under src//... which would @@ -77,7 +75,7 @@ android { } defaultConfig { applicationId 'de.reimardoeffinger.quickdic' - targetSdkVersion 25 - resConfigs "de", "es", "fr", "it", "ja", "pt", "pt-rBR", "ru" + targetSdkVersion 26 + resConfigs "de", "es", "fr", "it", "ja", "pt", "pt-rBR", "ru", "zh-rCN" } }