io.github.guilhe.kmp.plugin-composeuiviewcontroller
Owner: Guilherme Delgado
Automates configuration for the KMP-ComposeUIViewController KSP library by introducing a Gradle extension for streamlined setup and usage.
https://github.com/GuilhE/KMP-ComposeUIViewController
Sources: https://github.com/GuilhE/KMP-ComposeUIViewController.git
Version 1.2.0 (latest)
1.2.0
Created 05 November 2024.
Automates configuration for the KMP-ComposeUIViewController KSP library by introducing a Gradle extension for streamlined setup and usage.
Using the plugins DSL:
plugins {
id("io.github.guilhe.kmp.plugin-composeuiviewcontroller") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.guilhe.kmp:kmp-composeuiviewcontroller-gradle-plugin:1.2.0")
}
}
apply(plugin = "io.github.guilhe.kmp.plugin-composeuiviewcontroller")
Using the plugins DSL:
plugins {
id "io.github.guilhe.kmp.plugin-composeuiviewcontroller" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.guilhe.kmp:kmp-composeuiviewcontroller-gradle-plugin:1.2.0"
}
}
apply plugin: "io.github.guilhe.kmp.plugin-composeuiviewcontroller"