26 lines
669 B
Kotlin
26 lines
669 B
Kotlin
plugins {
|
|
id("gwenedeg.kmp.library")
|
|
}
|
|
|
|
kotlin {
|
|
androidLibrary {
|
|
namespace = "fr.ajaury.gwenedeg.playback"
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// Core modules
|
|
implementation(projects.core.audioplayer)
|
|
implementation(projects.core.coroutines)
|
|
implementation(projects.core.logging)
|
|
implementation(projects.core.model)
|
|
|
|
// Data modules
|
|
implementation(projects.data.preferences)
|
|
implementation(projects.data.records)
|
|
implementation(projects.data.resources)
|
|
implementation(projects.data.subtitle)
|
|
}
|
|
}
|
|
}
|