-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
43 lines (34 loc) · 1.44 KB
/
Copy pathdependencies.gradle
File metadata and controls
43 lines (34 loc) · 1.44 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
ext {
androidBuildVersion = "26.0.0"
projectTargetSdkVersion = 26
projectMinSdkVersion = 22
rxAndroidVersion = '2.0.1'
rxJavaVersion = '2.1.0'
rxMessengerVersion = '2.0.0'
junitVersion = '4.12'
mockitoVersion = '1.10.19'
robolectricVersion = '3.3.2'
assertJVersion = '2.7.0'
butterKnifeVersion = '8.5.1'
supportLibrary = '26.0.0'
presentationDependencies = [
butterKnife: "com.jakewharton:butterknife:$butterKnifeVersion",
support : "com.android.support:support-v4:$supportLibrary",
appCompat : "com.android.support:appcompat-v7:$supportLibrary",
]
domainDependencies = [
rxMessenger: "com.aevi.android:rxmessenger:$rxMessengerVersion",
rxJava : "io.reactivex.rxjava2:rxjava:$rxJavaVersion",
rxAndroid : "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion",
]
testDependencies = [
junit : "junit:junit:$junitVersion",
mockito : "org.mockito:mockito-core:$mockitoVersion",
robolectric : "org.robolectric:robolectric:$robolectricVersion",
robolectricannotations: "org.robolectric:robolectric-annotations:$robolectricVersion",
assertJ : "org.assertj:assertj-core:$assertJVersion",
]
aptDependencies = [
butterKnife: "com.jakewharton:butterknife-compiler:$butterKnifeVersion"
]
}