17 lines
275 B
Kotlin
17 lines
275 B
Kotlin
plugins {
|
|
id("gwenedeg.kmp.library")
|
|
}
|
|
|
|
kotlin {
|
|
androidLibrary {
|
|
namespace = "fr.ajaury.gwenedeg.records"
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// Core modules
|
|
implementation(projects.core.model)
|
|
}
|
|
}
|
|
}
|