This commit is contained in:
2021-06-22 13:36:23 +06:00
parent 19ea2f340a
commit b420d85be5
7 changed files with 120 additions and 1 deletions

View File

@@ -5,3 +5,18 @@ plugins {
}
apply from: "$mppProjectWithSerializationPresetPath"
kotlin {
sourceSets {
jvmMain {
dependencies {
api project(":micro_utils.coroutines")
}
}
androidMain {
dependencies {
api project(":micro_utils.coroutines")
}
}
}
}