Search Gradle plugins

me.yohom.fluttify

Owner: 小山

A tool that generating dart interface for native SDK.

https://github.com/yohom/fluttify-core

Version 0.6.2 (latest)

Created 02 July 2020.

A Compiler Generating Dart Bindings for Native SDK.

Using the plugins DSL:

plugins {
  id("me.yohom.fluttify") version "0.6.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.me.yohom:fluttify-core:0.6.2")
  }
}

apply(plugin = "me.yohom.fluttify")

Using the plugins DSL:

plugins {
  id "me.yohom.fluttify" version "0.6.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.me.yohom:fluttify-core:0.6.2"
  }
}

apply plugin: "me.yohom.fluttify"

Learn how to apply plugins to subprojects