org.jetbrains.gradle.apple.applePlugin
Owner: Vyacheslav Karpukhin
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 222.4595-0.23.2 (latest)
Created 05 June 2024.
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jetbrains.gradle.apple.applePlugin") version "222.4595-0.23.2"
}
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:222.4595-0.23.2") }
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:222.4595-0.23.2") } } apply(plugin = "org.jetbrains.gradle.apple.applePlugin")
- Applying plugins to all subprojects .