|
@@ -1,6 +1,8 @@
|
|
|
plugins {
|
|
plugins {
|
|
|
id 'com.android.application'
|
|
id 'com.android.application'
|
|
|
id 'kotlin-android'
|
|
id 'kotlin-android'
|
|
|
|
|
+ id 'kotlin-kapt'
|
|
|
|
|
+ id 'dagger.hilt.android.plugin'
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
android {
|
|
@@ -34,11 +36,15 @@ android {
|
|
|
dependencies {
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
- implementation 'androidx.core:core-ktx:1.3.2'
|
|
|
|
|
- implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
|
|
|
+ implementation 'androidx.core:core-ktx:1.5.0'
|
|
|
|
|
+ implementation 'androidx.appcompat:appcompat:1.3.0'
|
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
|
- testImplementation 'junit:junit:4.+'
|
|
|
|
|
|
|
+ //Dagger Hilt
|
|
|
|
|
+ implementation "com.google.dagger:hilt-android:$hilt_version"
|
|
|
|
|
+ kapt "com.google.dagger:hilt-compiler:$hilt_version"
|
|
|
|
|
+
|
|
|
|
|
+ testImplementation 'junit:junit:4.13.2'
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
|
}
|
|
}
|