build.gradle.kts 453 B

1234567891011121314151617181920
  1. plugins {
  2. id("d.convention.library")
  3. id("d.convention.compose")
  4. id("d.convention.hilt")
  5. }
  6. android {
  7. namespace = "com.zaojiao.app.feat.home"
  8. }
  9. dependencies {
  10. implementation(project(":feat:common"))
  11. implementation("androidx.core:core-ktx:1.10.1")
  12. implementation("com.google.dagger:dagger:2.44.2")
  13. kapt("com.google.dagger:dagger-compiler:2.44.2")
  14. implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1")
  15. }