Search Gradle plugins

com.tamirtw.xcode-plugin

A gradle plugin for building Xcode projects! . Forked off https://github.com/openbakery/gradle-xcodePlugin by René Pirringer

https://github.com/tamirtw/gradle-xcodePlugin

Sources: https://github.com/tamirtw/gradle-xcodePlugin.git

Version 0.11.4 (latest)

0.11.4

Created 28 July 2015.

A gradle plugin for building Xcode projects! . Forked off https://github.com/openbakery/gradle-xcodePlugin by René Pirringer

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.tamirtw.xcode-plugin") version "0.11.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.tamirtw:xcode-plugin:0.11.4")
      }
    }
    
    apply(plugin = "com.tamirtw.xcode-plugin")
  • Applying plugins to all subprojects .