Search Gradle plugins

Version 0.1.1 (latest)

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"

Learn how to apply plugins to subprojects