org.jetbrains.gradle.apple.applePlugin
Owner:
Kotlin Team
This plugin is no longer maintained. Please refer to the official Kotlin Multiplatform documentation for guidance on setting up iOS projects: https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-ios-integration-overview.html This plugin simplifies building Objective-C/Swift applications by generating an Xcode project from Gradle DSL. Particularly useful for Kotlin Multiplatform projects. For now only iOS applications are supported.
Sources: https://github.com/JetBrains
Version 212.4638.14-0.14
Created 21 September 2021.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jetbrains.gradle.apple.applePlugin") version "212.4638.14-0.14"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("org.jetbrains.gradle.apple.applePlugin:org.jetbrains.gradle.apple.applePlugin.gradle.plugin:212.4638.14-0.14") }It can then be applied in the precompiled script plugin:plugins { id("org.jetbrains.gradle.apple.applePlugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jetbrains.gradle.apple.applePlugin:org.jetbrains.gradle.apple.applePlugin.gradle.plugin:212.4638.14-0.14") } } apply(plugin = "org.jetbrains.gradle.apple.applePlugin") - Applying plugins to all subprojects .