X-Git-Url: http://gitweb.fperrin.net/?p=Dictionary.git;a=blobdiff_plain;f=build.gradle;h=12f457a5e2ef8c27f65d13b6e78b879211ed838d;hp=c438d1674f008c590bb11cffc5fb975d3207ff7f;hb=44700916fc1d55c17498a9a9224b07e247a498ee;hpb=b460be1899de39360ae79c5efe0326374a3ea7a0 diff --git a/build.gradle b/build.gradle index c438d16..12f457a 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:3.0.1' + classpath 'com.android.tools.build:gradle:3.1.3' } } @@ -18,13 +18,13 @@ configurations { smallicu } dependencies { - 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 + 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' } } @@ -64,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 @@ -79,6 +76,6 @@ android { defaultConfig { applicationId 'de.reimardoeffinger.quickdic' targetSdkVersion 26 - resConfigs "de", "es", "fr", "it", "ja", "pt", "pt-rBR", "ru" + resConfigs "de", "es", "fr", "it", "ja", "pt", "pt-rBR", "ru", "zh-rCN" } }