build.gradle.kts 463 B

1234567891011121314151617181920
  1. plugins {
  2. id("d.convention.library")
  3. id("d.convention.hilt")
  4. }
  5. android {
  6. namespace = "com.zaojiao.app.data.repo"
  7. }
  8. dependencies {
  9. implementation(project(":core:common"))
  10. implementation(project(":core:auth"))
  11. implementation(project(":data:remote"))
  12. implementation(project(":data:local"))
  13. implementation(project(":data:model"))
  14. api("androidx.paging:paging-runtime-ktx:3.2.0")
  15. api("androidx.paging:paging-compose:3.2.0")
  16. }