-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibs.gradle
72 lines (58 loc) · 3.89 KB
/
libs.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
ext {
// kotlin
kotlin = "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
coroutine = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutineVersion"
// retrofit
retrofit2 = "com.squareup.retrofit2:retrofit:$retrofitVersion"
retrofitCoroutine = "com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:$retrofitCoroutineVersion"
httpInterceptor = "com.squareup.okhttp3:logging-interceptor:$httpInterceptorVersion"
okhttp = "com.squareup.okhttp3:okhttp:$okhttpVersion"
gsonConvertFactory = "com.squareup.retrofit2:converter-gson:$retrofitVersion"
conscrypt = "org.conscrypt:conscrypt-android:$conscryptVersion"
//androidx
appCompat = "androidx.appcompat:appcompat:$appCompatVersion"
androidKtxCore = "androidx.core:core-ktx:$androidKtxCoreVersion"
constraintLayout = "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion"
navigationUi = "androidx.navigation:navigation-ui-ktx:$navigationVersion"
navigationFragment = "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
material = "com.google.android.material:material:$materialVersion"
cardView = "androidx.cardview:cardview:$cardviewVersion"
swipeRefresh = "androidx.swiperefreshlayout:swiperefreshlayout:$swipeRefreshVersion"
//androidx lifecycle
viewModelRuntime = "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion"
viewModel = "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion"
lifecycleXt = "androidx.lifecycle:lifecycle-extensions:$lifecycleVersion"
liveData = "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion"
// koin
koinScope = "org.koin:koin-androidx-scope:$koinVersion"
koinViewModel = "org.koin:koin-androidx-viewmodel:$koinVersion"
koinFragment = "org.koin:koin-androidx-fragment:$koinVersion"
koinAndroid = "org.koin:koin-androidx-ext:$koinVersion"
// gson
gson = "com.google.code.gson:gson:$gsonVersion"
// timber
timber = "com.jakewharton.timber:timber:$timberVersion"
// afollestad
recyclical = "com.afollestad:recyclical:$recyclicalVersion"
dialogs = "com.afollestad.material-dialogs:core:$dialogsVersion"
bottomSheets = "com.afollestad.material-dialogs:bottomsheets:$bottomSheetsVersion"
// lottie
lottie = "com.airbnb.android:lottie:$lottieVersion"
// room
room = "androidx.room:room-runtime:$roomVersion"
roomKtx = "androidx.room:room-ktx:$roomVersion"
roomCompiler = "androidx.room:room-compiler:$roomVersion"
// recyclerview animation
recyclerViewAnim = "jp.wasabeef:recyclerview-animators:$recyclerViewAnimVersion"
// firebase
firebaseCore = "com.google.firebase:firebase-core:$firebaseCoreVersion"
firebaseAnalytics = "com.google.firebase:firebase-analytics:$firebaseAnalyticsVersion"
firebaseLanguage = "com.google.firebase:firebase-ml-natural-language:$firebaseLanguageVersion"
firebaseTranslate = "com.google.firebase:firebase-ml-natural-language-translate-model:$firebaseTranslateVersion"
// justify textview
justifyTextView = "com.codesgood:justifiedtextview:$justifyTextViewVersion"
// picasso
picasso = "com.squareup.picasso:picasso:$picassoVersion"
// fab
fab = "com.github.clans:fab:$fabVersion"
}