-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
33 lines (26 loc) · 859 Bytes
/
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
buildscript {
dependencies {
classpath dep.androidPlugin
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
buildConfigField "boolean", "RUN_PERFORMANCE_TESTS", "true"
}
lintOptions {
// caused by JUnit referencing non-Android class, caused by including testing libs as
// compile instead of androidTestCompile (so we can share test code with other modules)
disable 'InvalidPackage'
}
}
dependencies {
api 'org.apache.commons:commons-lang3:3.4'
api 'org.greenrobot:essentials:3.0.0-RC1'
// AndroidJUnitRunner and JUnit Rules
api 'com.android.support.test:runner:1.0.1'
api 'com.android.support.test:rules:1.0.1'
api dep.supportAnnotations
}