This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdependencies.gradle
73 lines (66 loc) · 3 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
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
ext {
// API dependencies
gsonVersion = '2.8.0'
rxJavaVersion = '2.2.2'
rxAndroidVersion = '2.1.1'
jsonConverterVersion = '1.1.1'
rxMessengerVersion = '6.0.0'
configApiVersion = '1.1.1'
// Test dependencies
junitVersion = '4.13.2'
hamcrestVersion = '1.3'
mockitoVersion = '3.3.3'
assertJVersion = '2.7.0'
androidMockableVersion = '26'
robolectricVersion = '4.8.1'
// Sample Android deps
archLifecycleVersion = '1.0.3'
archLifecycleJava8Version = '1.1.0'
butterKnifeVersion = '10.2.3'
supportLibrary = '1.0.0'
recyclerview = '1.2.1'
cardview = '1.0.0'
appcompat = '1.4.2'
annotation = '1.4.0'
material = '1.6.1'
constraintlayout = '2.1.4'
androidxCore = '1.4.0'
archLifecycleVersion = '2.5.1'
jsonConverterVersion = "1.1.1"
// Sample AEVI deps
aeviUiLibraryVersion = "2.1.1"
appFlowConstantsVersion = '2.3.7'
apiDependencies = [
rxJava : "io.reactivex.rxjava2:rxjava:$rxJavaVersion",
rxMessenger : "com.aevi.android:rxmessenger:$rxMessengerVersion",
rxAndroid : "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion",
gson : "com.google.code.gson:gson:$gsonVersion",
archLifecycle : "androidx.lifecycle:lifecycle-runtime:$archLifecycleVersion",
archLifecycleJava8: "androidx.lifecycle:lifecycle-common-java8:$archLifecycleVersion",
jsonConverter : "com.aevi.util:json-converter:$jsonConverterVersion",
configApi : "com.aevi.sdk.config:config-api:$configApiVersion",
]
sampleDependencies = [
aeviUiLibrary : "com.aevi.ui.library:ui-library:$aeviUiLibraryVersion",
butterKnife : "com.jakewharton:butterknife:$butterKnifeVersion",
support : "androidx.legacy:legacy-support-v4:$supportLibrary",
recyclerView : "androidx.recyclerview:recyclerview:$recyclerview",
cardView : "androidx.cardview:cardview:$cardview",
appCompat : "androidx.appcompat:appcompat:$appcompat",
supportAnnotation: "androidx.annotation:annotation:$annotation",
design : "com.google.android.material:material:$material",
constraintLayout : "androidx.constraintlayout:constraintlayout:$constraintlayout",
appFlowConstants : "com.aevi.sdk.flow:api-constants:$appFlowConstantsVersion",
]
sampleAptDependencies = [
butterKnife: "com.jakewharton:butterknife-compiler:$butterKnifeVersion",
]
testDependencies = [
junit : "junit:junit:$junitVersion",
hamcrestAll : "org.hamcrest:hamcrest-all:$hamcrestVersion",
mockito : "org.mockito:mockito-core:$mockitoVersion",
assertJ : "org.assertj:assertj-core:$assertJVersion",
robolectric : "org.robolectric:robolectric:$robolectricVersion",
androidxCore: "androidx.test:core:$androidxCore",
]
}