forked from heiderlopes/modularizacao-ead
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
88 lines (64 loc) · 2.65 KB
/
dependencies.gradle
File metadata and controls
88 lines (64 loc) · 2.65 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
ext {
minSDK = 20
targetSDK = 28
compileSDK = 28
buildTools = '3.4.1'
appCompactVersion = '1.0.2'
kotlinVersion = '1.3.21'
AndroidArchVersion = '1.1.1'
databindingVersion = '3.1.4'
lifeCycleVersion = '2.0.0'
ktxVersion = '1.0.1'
constrainVersion = '1.1.3'
cardViewVersion = '1.0.0'
recyclerViewVersion = '1.0.0'
//Rx
rxJavaVersion = '2.2.7'
rxKotlinVersion = '2.4.0'
rxAndroidVersion = '2.1.1'
//Koin
koinVersion = '2.0.1'
//Retrofit
retrofitVersion = '2.3.0'
//Okhttp
okhttpVersion = '3.2.0'
//Gson
gsonVersion = '2.8.5'
//Room version
roomVersion = '2.1.0'
//Picasso version
picassoVersion = '2.71828'
//Test
junitVersion = '4.12'
espressoVersion = '3.1.1'
runnerVersion = '1.1.1'
dependencies = [
kotlin: "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",
appCompact: "androidx.appcompat:appcompat:$appCompactVersion",
constraintlayout: "androidx.constraintlayout:constraintlayout:$constrainVersion",
cardView: "androidx.cardview:cardview:$cardViewVersion",
recyclerView: "androidx.recyclerview:recyclerview:$recyclerViewVersion",
viewModel: "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifeCycleVersion",
lifeCycle: "android.arch.lifecycle:extensions:$AndroidArchVersion",
dataBinding: "com.android.databinding:compiler:$databindingVersion",
ktx: "androidx.core:core-ktx:$ktxVersion",
rxJava: "io.reactivex.rxjava2:rxjava:$rxJavaVersion",
rxKotlin: "io.reactivex.rxjava2:rxkotlin:$rxKotlinVersion",
rxAndroid: "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion",
koin: "org.koin:koin-android:$koinVersion",
koinViewModel: "org.koin:koin-androidx-viewmodel:$koinVersion",
retrofit: "com.squareup.retrofit2:retrofit:$retrofitVersion",
retrofitRxAdapter: "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion",
retrofitGsonConverter: "com.squareup.retrofit2:converter-gson:$retrofitVersion",
gson: "com.google.code.gson:gson:$gsonVersion",
room: "androidx.room:room-runtime:$roomVersion",
roomRxJava: "androidx.room:room-rxjava2:$roomVersion",
roomCompiler: "androidx.room:room-compiler:$roomVersion",
picasso: "com.squareup.picasso:picasso:$picassoVersion"
]
testDependecies = [
junit: "junit:junit:$junitVersion",
espresso: "androidx.test.espresso:espresso-core:$espressoVersion",
runner: "androidx.test:runner:$runnerVersion"
]
}