mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-25 02:14:32 +01:00
13 lines
371 B
Plaintext
13 lines
371 B
Plaintext
|
plugins {
|
||
|
kotlin("multiplatform")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
all {
|
||
|
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
|
||
|
languageSettings.useExperimentalAnnotation("androidx.compose.animation")
|
||
|
languageSettings.useExperimentalAnnotation("kotlinx.serialization.ExperimentalSerializationApi")
|
||
|
}
|
||
|
}
|
||
|
}
|