Skip to content

flutter-rb/flutter-rb-gradle-plugin

Repository files navigation

flutter-rb-gradle-plugin

GitHubActions JitPack

About

Gradle plugin for flutter_rb.

How to use

This plugin needs for flutter_rb. Just implement it to your library and use flutter_rb.

Implementation

Add this config to build.gradle at the root of the project:

buildscript {
    repositories {
        // Other repositories
        maven { url "https://jitpack.io" }
    }

    dependencies {
        // Other dependencies
        classpath 'com.github.flutter-rb:flutter-rb-gradle-plugin:1.0.1'
    }
}

apply plugin: 'com.smlnskgmail.jaman.flutterrb'

dependencies {
    // Other dependencies
    implementation 'com.github.flutter-rb:flutter-rb-gradle-plugin:1.0.1'
}

Test run

You can run plugin as Gradle task:

./gradlew -q prepareInfo

How to contribute

Read Commit Convention. Make sure your build is green before you contribute your pull request. Then:

$ ./gradlew clean
$ ./gradlew build

Contributors