Search Gradle plugins

Version 1.1.0

Created 28 June 2019.

A Gradle plugin that generates a universal framework from Kotlin/Native frameworks and a binary associated podspec.

Using the plugins DSL:

plugins {
  id("com.github.salomonbrys.gradle.kotlin.nat.ios-universal-framework") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.salomonbrys.gradle.kotlin.nat.ios:kotlin-ios-universal-framework:1.1.0")
  }
}

apply(plugin = "com.github.salomonbrys.gradle.kotlin.nat.ios-universal-framework")

Using the plugins DSL:

plugins {
  id "com.github.salomonbrys.gradle.kotlin.nat.ios-universal-framework" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.salomonbrys.gradle.kotlin.nat.ios:kotlin-ios-universal-framework:1.1.0"
  }
}

apply plugin: "com.github.salomonbrys.gradle.kotlin.nat.ios-universal-framework"

Learn how to apply plugins to subprojects