]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - build.gradle
Bump version once more.
[Dictionary.git] / build.gradle
index c438d1674f008c590bb11cffc5fb975d3207ff7f..12f457a5e2ef8c27f65d13b6e78b879211ed838d 100644 (file)
@@ -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/<type>
         // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
         // This moves them out of them default location under src/<type>/... 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"
     }
 }