]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - build.gradle
Add menu entry to jump to random word.
[Dictionary.git] / build.gradle
index 4feb3e00dbdb83313493a1db2a4064a5110725b7..0794423503bec651c699f5d4502e64c340420fe5 100644 (file)
@@ -3,7 +3,7 @@ buildscript {
         jcenter()
     }
     dependencies {
-        classpath 'com.android.tools.build:gradle:1.2.3'
+        classpath 'com.android.tools.build:gradle:1.5.0'
     }
 }
 
@@ -16,7 +16,7 @@ configurations {
     smallicu
 }
 dependencies {
-    compile 'com.android.support:appcompat-v7:22.2.1'
+    compile 'com.android.support:appcompat-v7:23.1.1'
     // 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
@@ -31,13 +31,19 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) {
     inputs.file "${configurations.smallicu.resolve()[0]}"
     outputs.dir "$buildDir"
     outputs.file "$buildDir/icu4j-55.1.small.jar"
+    // necessary due to gradle bug: GRADLE-2638
     new File("$buildDir").mkdirs()
     commandLine "./mksmallicu.sh", "${configurations.smallicu.resolve()[0]}", "$buildDir/icu4j-55.1.small.jar"
 }
 
+def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "../Util"
+
 android {
-    compileSdkVersion 22
-    buildToolsVersion "23.0.1"
+    compileSdkVersion 23
+    buildToolsVersion "23.0.2"
+    lintOptions {
+        disable "MissingTranslation"
+    }
     buildTypes {
         debug {
             applicationIdSuffix ".debug"
@@ -50,7 +56,7 @@ android {
     sourceSets {
         main {
             manifest.srcFile 'AndroidManifest.xml'
-            java.srcDirs = ['src', '../Util/src']
+            java.srcDirs = ['src', utildir + "/src"]
             res.srcDirs = ['res']
             assets.srcDirs = ['assets']
         }