-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdependencies.gradle
More file actions
66 lines (54 loc) · 2.89 KB
/
dependencies.gradle
File metadata and controls
66 lines (54 loc) · 2.89 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
55
56
57
58
59
60
61
62
63
64
65
66
ext {
minSdkVersion = 15
targetSdkVersion = 29
compileSdkVersion = 29
buildToolsVersion = "29.0.3"
versionCode = 3
versionName = "0.2.1"
supportLibVersion = "25.4.0"
leakCanaryVersion = '1.5.1'
wearableVersion = '2.0.0'
espressoVersion = '2.2.2'
testRunnerVersion = '0.5'
dep = [
// mapbox
mapboxMapSdk : 'com.mapbox.mapboxsdk:mapbox-android-sdk:5.1.0',
mapboxServices : 'com.mapbox.mapboxsdk:mapbox-java-services:2.2.0',
locationLayerPlugin : 'com.mapbox.mapboxsdk:mapbox-android-plugin-locationlayer:0.1.0',
// google
gson : 'com.google.code.gson:gson:2.8.0',
// unit test
junit : 'junit:junit:4.12',
mockito : 'org.mockito:mockito-core:2.2.27',
hamcrest : 'org.hamcrest:hamcrest-junit:2.0.0.0',
commonsIO : 'commons-io:commons-io:2.5',
robolectric : 'org.robolectric:robolectric:3.3.2',
// instrumentation test
testSpoonRunner : 'com.squareup.spoon:spoon-client:1.6.2',
testRunner : "com.android.support.test:runner:${testRunnerVersion}",
testRules : "com.android.support.test:rules:${testRunnerVersion}",
testEspressoCore : "com.android.support.test.espresso:espresso-core:${espressoVersion}",
testEspressoIntents : "com.android.support.test.espresso:espresso-intents:${espressoVersion}",
// support
supportAnnotations : "com.android.support:support-annotations:${supportLibVersion}",
supportAppcompatV7 : "com.android.support:appcompat-v7:${supportLibVersion}",
supportV4 : "com.android.support:support-v4:${supportLibVersion}",
supportDesign : "com.android.support:design:${supportLibVersion}",
supportRecyclerView : "com.android.support:recyclerview-v7:${supportLibVersion}",
supportConstraintLayout: "com.android.support.constraint:constraint-layout:1.0.2",
// butterknife
butterKnife : "com.jakewharton:butterknife:8.6.0",
butterKnifeProcessor : "com.jakewharton:butterknife-compiler:8.6.0",
// wear
wearCompile : "com.google.android.support:wearable:${wearableVersion}",
wearProvided : "com.google.android.wearable:wearable:${wearableVersion}",
// auto values
autoValues : 'com.google.auto.value:auto-value:1.4.1',
// square crew
timber : 'com.jakewharton.timber:timber:4.5.1',
okhttp3 : 'com.squareup.okhttp3:okhttp:3.6.0',
leakCanaryDebug : "com.squareup.leakcanary:leakcanary-android:${leakCanaryVersion}",
leakCanaryRelease : "com.squareup.leakcanary:leakcanary-android-no-op:${leakCanaryVersion}",
leakCanaryTest : "com.squareup.leakcanary:leakcanary-android-no-op:${leakCanaryVersion}"
]
}