584008004b
We were trying to target Android/iOS/Desktop with the same codebase using Kotlin Multiplatform, but that proved to be more complicated than anticipated. We are simplifying the scope of the project a bit by focusing on Android. Co-authored-by: Severiano Jaramillo <severiano.jaramillo@gmail.com> Reviewed-on: #1
8 lines
328 B
Text
8 lines
328 B
Text
plugins {
|
|
// this is necessary to avoid the plugins to be loaded multiple times
|
|
// in each subproject's classloader
|
|
alias(libs.plugins.androidApplication) apply false
|
|
alias(libs.plugins.androidLibrary) apply false
|
|
alias(libs.plugins.kotlinAndroid) apply false
|
|
alias(libs.plugins.kotlinJvm) apply false
|
|
}
|