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-pre-alpha-1

Created 07 January 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. Klutter combines industry best practices for everything from app design to CICD into a single cohesive framework. This plugin contains all tasks needed to run a Klutter Project

Using the plugins DSL:

plugins {
  id("dev.buijs.klutter.gradle") version "2022-pre-alpha-1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "dev.buijs.klutter.gradle" version "2022-pre-alpha-1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects