-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
48 lines (44 loc) · 1.42 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "org.fao.sola.clients.android.opentenure"
minSdkVersion 17
targetSdkVersion 21
multiDexEnabled true
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
}
dexOptions {
javaMaxHeapSize "4g"
}
}
dependencies {
compile project(':aFileChooser')
compile 'com.google.maps.android:android-maps-utils:0.4+'
compile 'com.android.support:support-v4:21.0.3'
compile 'com.google.code.gson:gson:2.4'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.android.support:multidex:1.0.1'
compile files('libs/h2-1.3.175.jar')
compile files('libs/httpcore-4.3.2.jar')
compile files('libs/httpmime-4.3.jar')
compile files('libs/jackson-annotations-2.4.2.jar')
compile files('libs/jackson-core-2.4.2.jar')
compile files('libs/jackson-databind-2.4.2.jar')
compile files('libs/jts-1.13.jar')
compile files('libs/zip4j_1.3.2.jar')
}