breezy/domain/build.gradle.kts

22 lines
455 B
Text
Raw Normal View History

2025-11-21 15:11:39 +01:00
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)
}