forked from galcyurio/material-calendarview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
40 lines (33 loc) · 1.23 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
ext {
minSdkVersion = 20
compileSdkVersion = 30
targetSdkVersion = 30
hamcrestVersion = '1.3'
supportV4 = 'androidx.legacy:legacy-support-v4:1.0.0'
supportDesign = "com.android.support:design:27.0.2"
supportAnnotations = 'androidx.annotation:annotation:1.0.0'
supportAppCompat = 'androidx.appcompat:appcompat:1.0.0'
recyclerviewV7 = 'androidx.recyclerview:recyclerview:1.0.0'
// Test
junit = "junit:junit:4.12"
testRunner = 'androidx.test:runner:1.1.0'
testRules = 'androidx.test:rules:1.1.0'
// Hamcrest
hamcrestCore = "org.hamcrest:hamcrest-core:$hamcrestVersion"
hamcrestLibrary = "org.hamcrest:hamcrest-library:$hamcrestVersion"
hamcrestIntegration = "org.hamcrest:hamcrest-integration:$hamcrestVersion"
// Other
threeTenAbp = 'com.jakewharton.threetenabp:threetenabp:1.4.8'
butterknife = 'com.jakewharton:butterknife:10.2.3'
butterknifeCompiler = 'com.jakewharton:butterknife-compiler:10.2.3'
testDep = [junit,
hamcrestCore,
hamcrestLibrary,
hamcrestIntegration]
androidTestDep = [junit,
testRunner,
testRules,
hamcrestCore,
hamcrestLibrary,
hamcrestIntegration]
}