forked from ptrstovka/calendarview2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
43 lines (36 loc) · 1.45 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
ext {
minSdkVersion = 14
compileSdkVersion = 25
targetSdkVersion = 25
buildToolsVersion = '25.0.2'
hamcrestVersion = '1.3'
junitVersion = '4.11'
runnerVersion = '0.5'
supportVersion = '25.3.1'
supportV4 = "com.android.support:support-v4:$supportVersion"
supportDesign = "com.android.support:design:$supportVersion"
supportAnnotations = "com.android.support:support-annotations:$supportVersion"
supportAppCompat = "com.android.support:appcompat-v7:$supportVersion"
recyclerviewV7 = "com.android.support:recyclerview-v7:$supportVersion"
// Test
junit = "junit:junit:$junitVersion"
testRunner = "com.android.support.test:runner:$runnerVersion"
testRules = "com.android.support.test:rules:$runnerVersion"
// Hamcrest
hamcrestCore = "org.hamcrest:hamcrest-core:$hamcrestVersion"
hamcrestLibrary = "org.hamcrest:hamcrest-library:$hamcrestVersion"
hamcrestIntegration = "org.hamcrest:hamcrest-integration:$hamcrestVersion"
// Other
butterknife = 'com.jakewharton:butterknife:8.5.1'
butterknifeCompiler = 'com.jakewharton:butterknife-compiler:8.5.1'
testDep = [junit,
hamcrestCore,
hamcrestLibrary,
hamcrestIntegration]
androidTestDep = [junit,
testRunner,
testRules,
hamcrestCore,
hamcrestLibrary,
hamcrestIntegration]
}