build.gradle.kts 400 B

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