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.1
222.4595-0.23.1
Created 28 February 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.1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.org.jetbrains.gradle.apple:apple-gradle-plugin:222.4595-0.23.1") } } apply(plugin = "org.jetbrains.gradle.apple.applePlugin")
- Applying plugins to all subprojects .