dev.buijs.klutter
Owner: Gillian Buijs
Klutter is a framework and tool set which uses Flutter to create the frontend and Kotlin Multiplatform for the backend. The connective layer is generated by the Klutter framework. This plugin contains all tasks needed to run a Klutter Project.
Sources: https://github.com/buijs-dev/klutter
Version 2023.2.1.beta (latest)
2023.2.1.beta
Created 08 October 2023.
Klutter is a framework and tool set which uses Flutter to create the frontend and Kotlin Multiplatform for the backend. The connective layer is generated by the Klutter framework. This plugin contains all tasks needed to run a Klutter Project.
Using the plugins DSL:
plugins {
id("dev.buijs.klutter") version "2023.2.1.beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.buijs.klutter:gradle:2023.2.1.beta")
}
}
apply(plugin = "dev.buijs.klutter")
Using the plugins DSL:
plugins {
id "dev.buijs.klutter" version "2023.2.1.beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.buijs.klutter:gradle:2023.2.1.beta"
}
}
apply plugin: "dev.buijs.klutter"