com.madvay.tools.build.mixc
                  Owner:
                  
                    
                    Advay Mengle
                  
                
Simple execution of Xcode iOS/Mac OS X builds in Gradle projects.
https://madvay.com/source/mixc-build
Sources: https://github.com/madvay/mixc-build
Version 0.1.4-alpha (latest)
Created 24 August 2015.
                Simple execution of Xcode iOS/Mac OS X builds in Gradle projects.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.madvay.tools.build.mixc") version "0.1.4-alpha"
}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("com.madvay.tools.build.mixc:com.madvay.tools.build.mixc.gradle.plugin:0.1.4-alpha") }It can then be applied in the precompiled script plugin:plugins { id("com.madvay.tools.build.mixc") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.madvay.tools.build.mixc:com.madvay.tools.build.mixc.gradle.plugin:0.1.4-alpha") } } apply(plugin = "com.madvay.tools.build.mixc")
- Applying plugins to all subprojects .