]> gitweb.fperrin.net Git - Dictionary.git/blob - build.gradle
Switch to newer SDK version.
[Dictionary.git] / build.gradle
1 buildscript {
2     repositories {
3         jcenter()
4     }
5     dependencies {
6         classpath 'com.android.tools.build:gradle:1.2.3'
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.1.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.1"
44     buildTypes {
45         debug {
46             applicationIdSuffix ".debug"
47         }
48         release {
49             minifyEnabled true
50             shrinkResources true
51         }
52     }
53     sourceSets {
54         main {
55             manifest.srcFile 'AndroidManifest.xml'
56             java.srcDirs = ['src', utildir + "/src"]
57             res.srcDirs = ['res']
58             assets.srcDirs = ['assets']
59         }
60
61         // Move the tests to tests/java, tests/res, etc...
62         instrumentTest.setRoot('tests')
63
64         // Move the build types to build-types/<type>
65         // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
66         // This moves them out of them default location under src/<type>/... which would
67         // conflict with src/ being used by the main source set.
68         // Adding new build types or product flavors should be accompanied
69         // by a similar customization.
70         debug.setRoot('build-types/debug')
71         release.setRoot('build-types/release')
72     }
73     defaultConfig {
74         applicationId 'de.reimardoeffinger.quickdic'
75         targetSdkVersion 22
76     }
77 }