35 lines
1.1 KiB
Kotlin
35 lines
1.1 KiB
Kotlin
plugins {
|
|
// AGP must apply BEFORE recipe.kotlin.multiplatform — the latter calls androidTarget(),
|
|
// which requires the Android Gradle Plugin to already be on the project.
|
|
alias(libs.plugins.androidLibrary)
|
|
id("recipe.kotlin.multiplatform")
|
|
id("recipe.quality")
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
|
|
// No iOS framework here — composeApp's umbrella `ComposeApp.framework`
|
|
// transitively exports shared. Producing a second framework would double-bundle
|
|
// the Kotlin stdlib at link time (PITFALL: duplicate-framework collision).
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// Phase 1: intentionally empty. Domain models + DTOs land Phase 2+.
|
|
// D-19 / INFRA-06: No Ktor, Compose, SQLDelight, Koin, or Kermit here — EVER.
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "dev.ulfrx.recipe.shared"
|
|
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
defaultConfig {
|
|
minSdk = libs.versions.android.minSdk.get().toInt()
|
|
}
|
|
}
|