-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared_dependencies.gradle
More file actions
28 lines (25 loc) · 1.55 KB
/
shared_dependencies.gradle
File metadata and controls
28 lines (25 loc) · 1.55 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
dependencies{
implementation 'androidx.core:core-ktx:1.3.2'
implementation "androidx.appcompat:appcompat:$appCompatVersion"
implementation "com.google.android.material:material:$materialVersion"
implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion"
implementation "androidx.legacy:legacy-support-v4:$legacyVersion"
implementation "androidx.recyclerview:recyclerview:$recyclerViewVersion"
implementation "com.github.bumptech.glide:glide:$glideVersion"
implementation "androidx.activity:activity-ktx:$activityKtxVersion"
implementation "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
implementation "androidx.navigation:navigation-ui-ktx:$navigationVersion"
implementation 'com.ms-square:expandableTextView:0.1.4'
implementation "androidx.test.espresso:espresso-idling-resource:$idleResourceVersion"
implementation "org.koin:koin-core:$koinVersion"
implementation "org.koin:koin-android:$koinVersion"
implementation "org.koin:koin-android-viewmodel:$koinVersion"
testImplementation "org.mockito:mockito-core:3.6.0"
testImplementation "org.mockito:mockito-inline:3.6.0"
testImplementation "androidx.arch.core:core-testing:2.1.0"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.3.0"
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}