-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared_dependencies.gradle
32 lines (28 loc) · 1.53 KB
/
shared_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
dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "androidx.core:core-ktx:$core_ktx_version"
implementation "androidx.constraintlayout:constraintlayout:$constraint_version"
implementation "androidx.legacy:legacy-support-v4:$legacy_support_version"
testImplementation "junit:junit:4.13.2"
androidTestImplementation "androidx.test.ext:junit:$androidx_junit_version"
androidTestImplementation "androidx.test.espresso:espresso-core:3.4.0"
implementation "androidx.multidex:multidex:$multidex_version"
implementation "androidx.cardview:cardview:$cardview_version"
implementation "androidx.recyclerview:recyclerview:$recyclerview_version"
implementation "com.google.android.material:material:$material_version"
// notice that the compiler version must be the same than our gradle version
kapt "com.android.databinding:compiler:3.1.4"
// Koin main features for Android
implementation "io.insert-koin:koin-android:$koin_version"
// No more koin-android-viewmodel, koin-android-scope, koin-android-fragment
// Java Compatibility
implementation "io.insert-koin:koin-android-compat:$koin_version"
// Jetpack WorkManager
implementation "io.insert-koin:koin-androidx-workmanager:$koin_version"
// Navigation Graph
implementation "io.insert-koin:koin-androidx-navigation:$koin_version"
// Jetpack Compose
implementation "io.insert-koin:koin-androidx-compose:$koin_version"
//paging 3
implementation "androidx.paging:paging-runtime-ktx:3.1.0"
}