1234567891011121314151617181920 |
- plugins {
- id("d.convention.library")
- id("d.convention.hilt")
- }
- android {
- namespace = "com.zaojiao.app.data.repo"
- }
- dependencies {
- implementation(project(":core:common"))
- implementation(project(":core:auth"))
- implementation(project(":data:remote"))
- implementation(project(":data:local"))
- implementation(project(":data:model"))
- api("androidx.paging:paging-runtime-ktx:3.2.0")
- api("androidx.paging:paging-compose:3.2.0")
- }
|