-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (43 loc) · 1.29 KB
/
build.gradle
File metadata and controls
57 lines (43 loc) · 1.29 KB
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.f2prateek.javafmt:javafmt:0.1.6'
}
}
apply plugin: 'com.android.library'
apply plugin: 'com.f2prateek.javafmt'
android {
compileSdkVersion 26
buildToolsVersion '25.0.3'
defaultConfig {
minSdkVersion 14
targetSdkVersion 26
compileSdkVersion 26
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
repositories {
jcenter()
mavenCentral()
}
compile 'com.segment.analytics.android:analytics:4.0.0'
testCompile 'com.segment.analytics.android:analytics-tests:4.0.0'
compile 'com.optimizely.ab:android-sdk:1.5.1'
testCompile 'junit:junit:4.12'
testCompile 'org.robolectric:robolectric:3.4.2'
testCompile 'org.assertj:assertj-core:1.7.1'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.powermock:powermock:1.6.6'
testCompile 'org.powermock:powermock-module-junit4:1.6.6'
testCompile 'org.powermock:powermock-module-junit4-rule:1.6.6'
testCompile 'org.powermock:powermock-api-mockito:1.6.6'
testCompile 'org.powermock:powermock-classloading-xstream:1.6.6'
}
apply from: rootProject.file('gradle/gradle-mvn-push.gradle')