21 lines
455 B
Kotlin
21 lines
455 B
Kotlin
plugins {
|
|
id("breezy.library")
|
|
kotlin("android")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "breezyweather.domain"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.weatherUnit)
|
|
implementation(libs.kotlinx.serialization.json)
|
|
|
|
api(libs.sqldelight.android.paging)
|
|
}
|