forked from square/picasso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
27 lines (25 loc) · 1.14 KB
/
dependencies.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
ext {
compileSdkVersion = 24
buildToolsVersion = '24.0.0'
minSdkVersion = 14
targetSdkVersion = 24
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
okhttp3Version = '3.0.1'
supportLibrariesVersion = '24.0.0'
dep = [
androidPlugin : 'com.android.tools.build:gradle:2.1.2',
okhttp : 'com.squareup.okhttp:okhttp:2.7.1',
okhttp3 : "com.squareup.okhttp3:okhttp:$okhttp3Version",
mockWebServer : "com.squareup.okhttp3:mockwebserver:$okhttp3Version",
pollexor : 'com.squareup:pollexor:2.0.0',
supportV4 : "com.android.support:support-v4:$supportLibrariesVersion",
supportAnnotations : "com.android.support:support-annotations:$supportLibrariesVersion",
junit : 'junit:junit:4.10',
fest : 'org.easytesting:fest-assert-core:2.0M10',
festAndroid : 'com.squareup:fest-android:1.0.6',
robolectric : 'org.robolectric:robolectric:3.1',
mockito : 'org.mockito:mockito-core:1.9.5'
]
isCi = "true".equals(System.getenv('CI'))
}