-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.gradle
78 lines (64 loc) · 3.51 KB
/
config.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
ext {
android = [
compileSdkVersion: 24,
buildToolsVersion: "24.0.3",
minSdkVersion : 15,
targetSdkVersion : 24,
]
deps = [
// Android
supportannotations : 'com.android.support:support-annotations:24.2.0',
appcompat : 'com.android.support:appcompat-v7:24.2.0',
recyclerview : 'com.android.support:recyclerview-v7:24.2.0',
design : 'com.android.support:design:24.2.0',
// RxJava
rxjava : 'io.reactivex:rxjava:1.2.0',
rxandroid : 'io.reactivex:rxandroid:1.2.1',
// ButterKnife
butterknife : 'com.jakewharton:butterknife:8.4.0',
butterknifecompiler : 'com.jakewharton:butterknife-compiler:8.4.0',
// Dagger2
dagger : 'com.google.dagger:dagger:2.7',
daggercompiler : 'com.google.dagger:dagger-compiler:2.7',
// javaxannotation : 'javax.annotation:jsr250-api:1.0',
// Retrofit
retrofit : 'com.squareup.retrofit2:retrofit:2.1.0',
gsonconvert : 'com.squareup.retrofit2:converter-gson:2.1.0',
rxjavaadapter : 'com.squareup.retrofit2:adapter-rxjava:2.1.0',
// OKHttp
okhttp : 'com.squareup.okhttp3:okhttp:3.4.1',
okhttpmockwebserver : 'com.squareup.okhttp3:mockwebserver:3.4.1',
okhttploginterceptor : 'com.squareup.okhttp3:logging-interceptor:3.4.1',
// Gson
gson : 'com.google.code.gson:gson:2.7',
// Glide
glide : 'com.github.bumptech.glide:glide:3.7.0',
glideokhttpintegration: 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar',
// Timber
timber : 'com.jakewharton.timber:timber:4.3.1',
// Pull to refresh
ultraptr : 'in.srain.cube:ultra-ptr:1.0.11',
// Tab Layout
flycotablayout : 'com.flyco.tablayout:FlycoTabLayout_Lib:2.0.6@aar',
// RxBus
rxbus : 'com.hwangjr.rxbus:rxbus:1.0.5',
// Leak Canary
leakcanary : 'com.squareup.leakcanary:leakcanary-android:1.5',
leakcanarynoop : 'com.squareup.leakcanary:leakcanary-android-no-op:1.5',
// Unit test dependencies
junit : 'junit:junit:4.12',
robolectric : 'org.robolectric:robolectric:3.1.1',
mockito : 'org.mockito:mockito-core:1.+',
hamcrestcore : 'org.hamcrest:hamcrest-core:1.3',
hamcrestlibrary : 'org.hamcrest:hamcrest-library:1.3',
hamcrestintegration : 'org.hamcrest:hamcrest-integration:1.3',
// Integration test dependencies
testrunner : 'com.android.support.test:runner:0.5',
testrules : 'com.android.support.test:rules:0.5',
espresso : 'com.android.support.test.espresso:espresso-core:2.2.2',
dexmaker : 'com.crittercism.dexmaker:dexmaker:1.4',
dexmakerdx : 'com.crittercism.dexmaker:dexmaker-dx:1.4',
dexmakermockito : 'com.crittercism.dexmaker:dexmaker-mockito:1.4',
spoon : 'com.squareup.spoon:spoon-client:1.3.1'
]
}