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-3y

Created 22 March 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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("dev.buijs.klutter.gradle:dev.buijs.klutter.gradle.gradle.plugin:2022-pre-alpha-3y")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.buijs.klutter.gradle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.buijs.klutter.gradle:dev.buijs.klutter.gradle.gradle.plugin:2022-pre-alpha-3y")
      }
    }
    
    apply(plugin = "dev.buijs.klutter.gradle")
  • Applying plugins to all subprojects .