-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared_depedency.gradle
24 lines (20 loc) · 980 Bytes
/
shared_depedency.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
dependencies{
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
//android lifecycle
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.0'
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.0"
//Koin
implementation 'org.koin:koin-core:2.1.6'
implementation 'org.koin:koin-android:2.1.6'
implementation 'org.koin:koin-android-viewmodel:2.1.6'
//Glide
implementation 'com.github.bumptech.glide:glide:4.12.0'
}