X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=build.gradle;h=5914258105e196be6134e1fe1b6160fcac04cd39;hb=b212e195a74e112b428d784cdd61fca75e2aef83;hp=b7d76b66eb4e3aab072789d0a0f29b78578d4286;hpb=643d5c838c10a1892f6078f1fa131a8e0d53864b;p=Dictionary.git diff --git a/build.gradle b/build.gradle index b7d76b6..5914258 100644 --- a/build.gradle +++ b/build.gradle @@ -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.2.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 @@ -36,9 +36,14 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { 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" @@ -51,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'] }