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 222.849-0.15.1
Created 06 April 2022.
Add this plugin to your build using the plugins DSL:
plugins {
  id("org.jetbrains.gradle.apple.applePlugin") version "222.849-0.15.1"
}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.849-0.15.1") }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.849-0.15.1") } } apply(plugin = "org.jetbrains.gradle.apple.applePlugin")
- Applying plugins to all subprojects .