]> gitweb.fperrin.net Git - Dictionary.git/blob - build.gradle
Bump gradle version.
[Dictionary.git] / build.gradle
1 buildscript {
2     repositories {
3         jcenter()
4     }
5     dependencies {
6         classpath 'com.android.tools.build:gradle:2.1.0'
7     }
8 }
9
10 apply plugin: 'com.android.application'
11
12 repositories {
13     jcenter()
14 }
15 configurations {
16     smallicu
17 }
18 dependencies {
19     compile 'com.android.support:appcompat-v7:23.2.1'
20     // Note: you can just replace "smallicu" by compile
21     // and remove the "compile files" part if you do not
22     // care about the size of the apk
23     smallicu 'com.ibm.icu:icu4j:55.1'
24     compile files("$buildDir/icu4j-55.1.small.jar") {
25         builtBy 'makesmallicu'
26     }
27 }
28
29 task makesmallicu (type:Exec, dependsOn: configurations.smallicu) {
30     inputs.file "mksmallicu.sh"
31     inputs.file "${configurations.smallicu.resolve()[0]}"
32     outputs.dir "$buildDir"
33     outputs.file "$buildDir/icu4j-55.1.small.jar"
34     // necessary due to gradle bug: GRADLE-2638
35     new File("$buildDir").mkdirs()
36     commandLine "./mksmallicu.sh", "${configurations.smallicu.resolve()[0]}", "$buildDir/icu4j-55.1.small.jar"
37 }
38
39 def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "../Util"
40
41 android {
42     compileSdkVersion 23
43     buildToolsVersion "23.0.2"
44     lintOptions {
45         disable "MissingTranslation"
46     }
47     buildTypes {
48         debug {
49             applicationIdSuffix ".debug"
50         }
51         release {
52             minifyEnabled true
53             shrinkResources true
54         }
55     }
56     sourceSets {
57         main {
58             manifest.srcFile 'AndroidManifest.xml'
59             java.srcDirs = ['src', utildir + "/src"]
60             res.srcDirs = ['res']
61             assets.srcDirs = ['assets']
62         }
63
64         // Move the tests to tests/java, tests/res, etc...
65         instrumentTest.setRoot('tests')
66
67         // Move the build types to build-types/<type>
68         // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
69         // This moves them out of them default location under src/<type>/... which would
70         // conflict with src/ being used by the main source set.
71         // Adding new build types or product flavors should be accompanied
72         // by a similar customization.
73         debug.setRoot('build-types/debug')
74         release.setRoot('build-types/release')
75     }
76     defaultConfig {
77         applicationId 'de.reimardoeffinger.quickdic'
78         targetSdkVersion 22
79     }
80 }