com.github.salomonbrys.gradle.kotlin.nat.ios-universal-framework
Owner: Salomon BRYS
A Gradle plugin that generates a universal framework from Kotlin/Native frameworks and a binary associated podspec.
https://github.com/SalomonBrys/kotlin-ios-universal-framework
Sources: https://github.com/SalomonBrys/kotlin-ios-universal-framework.git
Version 1.2.0 (latest)
1.2.0
Created 03 July 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.2.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.2.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.2.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.2.0"
}
}
apply plugin: "com.github.salomonbrys.gradle.kotlin.nat.ios-universal-framework"