Search Gradle plugins

dev.buijs.klutter.gradle

The klutterPlugin generates the MethodChannel code used by the Flutter frontend to communicate with Kotlin Multiplatform backend.

https://buijs.dev/klutter/

Sources: https://github.com/buijs-dev/klutter

Version 2022.r6.alpha

Created 22 June 2022.

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.gradle") version "2022.r6.alpha"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.buijs.klutter:plugin-gradle:2022.r6.alpha")
  }
}

apply(plugin = "dev.buijs.klutter.gradle")

Using the plugins DSL:

plugins {
  id "dev.buijs.klutter.gradle" version "2022.r6.alpha"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.buijs.klutter:plugin-gradle:2022.r6.alpha"
  }
}

apply plugin: "dev.buijs.klutter.gradle"

Learn how to apply plugins to subprojects