saddamhowladar77
05/08/2023, 4:45 PMis there any possibility that after Sunsetting AppCode this year Kotlin Multiplatform Mobile: Gradle a unified Gradle DSL for all its modules, including iosApp. comes to android studio
plugins {
id("org.jetbrains.gradle.apple.applePlugin") version "211.5739-0.12"
}
apple {
iosApp {
productName = "KMMApp"
sceneDelegateClass = "SceneDelegate"
launchStoryboard = "LaunchScreen"
//productInfo["NSAppTransportSecurity"] = mapOf("NSAllowsArbitraryLoads" to true)
//buildSettings["OTHER_LDFLAGS"] = ""
dependencies {
implementation(project(":shared"))
}
}
}Nikita Lipsky
05/08/2023, 8:02 PMsaddamhowladar77
05/08/2023, 9:33 PM