Gradle plugin for flutter_rb.
This plugin needs for flutter_rb. Just implement it to your library and use flutter_rb
.
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'
}
You can run plugin as Gradle task:
./gradlew -q prepareInfo
Read Commit Convention. Make sure your build is green before you contribute your pull request. Then:
$ ./gradlew clean
$ ./gradlew build
- @fartem as Artem Fomchenkov