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