mirror of
https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git
synced 2024-11-04 23:43:51 +00:00
20 lines
447 B
Groovy
20 lines
447 B
Groovy
|
plugins {
|
||
|
id "org.jetbrains.kotlin.multiplatform"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
id "com.android.library"
|
||
|
}
|
||
|
|
||
|
apply from: "$mppProjectWithSerializationPresetPath"
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
api "dev.inmo:micro_utils.repos.common:$micro_utils_version"
|
||
|
api project(":tgbotapi.libraries.cache.content.common")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|