forked from Orange-OpenSource/VVM_OMTP_stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (35 loc) · 1.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
apply plugin: 'com.android.application'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.1'
}
}
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
buildTypes {
/*
Publish all variants (debug and release here) of the library so they are available to other project
http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Library-Publication
*/
publishNonDefault true
}
sourceSets {
/*
Can make something cleaner in Android studio 0.5.1,
see https://android-review.googlesource.com/#/c/84343/
https://code.google.com/p/android/issues/detail?id=66758
*/
main {
manifest.srcFile 'src/main/AndroidManifest.xml'
java.srcDirs = [
'src/main/java',
'src/main/deps/email/src',
'src/main/deps/jsr305/src'
]
}
}
}