This repository has been archived on 2024-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
compose-multiplatform-ios-a…/build.gradle.kts
2023-03-23 15:44:18 +04:00

9 lines
302 B
Kotlin

plugins {
// this is necessary to avoid the plugins to be loaded multiple times
// in each subproject's classloader
kotlin("multiplatform").apply(false)
id("com.android.application").apply(false)
id("com.android.library").apply(false)
id("org.jetbrains.compose").apply(false)
}