dev.srsouza.gradle.kmp-swift-reveal
Owner: Gabriel Souza
Gradle plugin that reveal the Swift code that you should expect from a Kotlin iOS module.
https://github.com/DevSrSouza/kmp-swift-reveal
Sources: https://github.com/DevSrSouza/kmp-swift-reveal
Version 0.1.1 (latest)
0.1.1
Created 11 October 2023.
Gradle plugin that reveal the Swift code that you should expect from a Kotlin iOS module.
Using the plugins DSL:
plugins {
id("dev.srsouza.gradle.kmp-swift-reveal") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.srsouza.gradle:plugin:0.1.1")
}
}
apply(plugin = "dev.srsouza.gradle.kmp-swift-reveal")
Using the plugins DSL:
plugins {
id "dev.srsouza.gradle.kmp-swift-reveal" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.srsouza.gradle:plugin:0.1.1"
}
}
apply plugin: "dev.srsouza.gradle.kmp-swift-reveal"