-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibraries.gradle
More file actions
54 lines (46 loc) · 2.79 KB
/
libraries.gradle
File metadata and controls
54 lines (46 loc) · 2.79 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
ext {
minSdkVersion = 24
compileSdkVersion = 26
buildToolsVersion = '26.0.0'
//Android
androidSupportVersion = '25.4.0'
rxAndroidVersion = '2.0.1'
butterKnifeVersion = '8.7.0'
//Java
rxJavavaVersion = '2.1.1'
retrofitVersion = '2.3.0'
javaxInjectVersion = '1'
daggerVersion = '2.11'
jsrVersion = '1.0'
//Testing
junitVersion = '4.12'
mockitoVersion = '1.10.19'
espressoVersion = '2.2.2'
runnerVersion = '0.5'
rulesVersion = '0.5'
libraries = [supportAnnotations : "com.android.support:support-annotations:${androidSupportVersion}",
retrofit : "com.squareup.retrofit2:retrofit:${retrofitVersion}",
retrofitGsonConverter : "com.squareup.retrofit2:converter-gson:${retrofitVersion}",
retrofitRxJavaAdapter : "com.squareup.retrofit2:adapter-rxjava2:${retrofitVersion}",
rxJava : "io.reactivex.rxjava2:rxjava:${rxJavavaVersion}",
rxAndroid : "io.reactivex.rxjava2:rxandroid:${rxAndroidVersion}",
javaxInject : "javax.inject:javax.inject:${javaxInjectVersion}",
dagger : "com.google.dagger:dagger:${daggerVersion}",
daggerCompiler : "com.google.dagger:dagger-compiler:${daggerVersion}",
jsr : "javax.annotation:jsr250-api:${jsrVersion}",
daggerAndroid : "com.google.dagger:dagger-android:${daggerVersion}",
daggerAnnotationProcessor : "com.google.dagger:dagger-android-processor:${daggerVersion}",
butterKnife : "com.jakewharton:butterknife:${butterKnifeVersion}",
butterKnifeCompiler : "com.jakewharton:butterknife-compiler:${butterKnifeVersion}",
recyclerView : "com.android.support:recyclerview-v7:${androidSupportVersion}",
appCompat : "com.android.support:support-compat:${androidSupportVersion}"
]
testLibraries = [mockito : "org.mockito:mockito-core:${mockitoVersion}",
junit : "junit:junit:${junitVersion}",
espresso : "com.android.support.test.espresso:espresso-core:${espressoVersion}",
espressoContrib: "com.android.support.test.espresso:espresso-contrib:${espressoVersion}",
espressoIntents: "com.android.support.test.espresso:espresso-intents:${espressoVersion}",
runner : "com.android.support.test:runner:${runnerVersion}",
rules : "com.android.support.test:rules:${rulesVersion}"
]
}