-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
79 lines (67 loc) · 2.01 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.13.0'
}
}
// apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'android'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
compile("com.google.guava:guava:18.0")
compile("joda-time:joda-time:2.4")
compile("org.apache.commons:commons-lang3:3.3.2")
compile("commons-io:commons-io:2.4")
compile("commons-codec:commons-codec:1.9")
compile("commons-collections:commons-collections:3.2.1")
compile("com.fasterxml.jackson.core:jackson-databind:2.4.2")
compile("com.android.support:appcompat-v7:19.1.+")
//testCompile("junit:junit:4.9")
//testCompile("com.fasterxml.jackson.core:jackson-databind:2.4.2")
// classpath 'com.android.tools.build:gradle:0.13'
}
android {
compileSdkVersion 19
buildToolsVersion "20.0.0"
defaultConfig {
minSdkVersion 11
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
sourceSets {
main {
manifest.srcFile 'asgn1/assigned_project/code/BackNash/AndroidManifest.xml'
java.srcDirs = ['asgn1/assigned_project/code/BackNash/src']
resources.srcDirs = ['asgn1/assigned_project/code/BackNash/res']
// aidl.srcDirs = ['src']
// renderscript.srcDirs = ['src']
res.srcDirs = ['asgn1/assigned_project/code/BackNash/res']
assets.srcDirs = ['asgn1/assigned_project/code/BackNash/assets']
}
// androidTest.setRoot('tests')
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.1'
}