19 lines
379 B
Kotlin
19 lines
379 B
Kotlin
plugins {
|
|
id("gwenedeg.kmp.library")
|
|
}
|
|
|
|
kotlin {
|
|
androidLibrary {
|
|
namespace = "fr.ajaury.gwenedeg.subtitle"
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// Core modules
|
|
implementation(projects.core.coroutines)
|
|
implementation(projects.core.logging)
|
|
implementation(projects.core.model)
|
|
}
|
|
}
|
|
}
|