Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 496 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 496 Bytes

Installation

  1. In your project-level build.gradle file, add this plugin as a buildscript dependency.
buildscript {
  repositories {
    // Check that you have Maven Central repository (if not, add it).
    mavenCentral()
  }

  dependencies {
    classpath 'io.github.shadhinkhan:persuades-ray-bhai:1.0.0'
  }
}
  1. In your app-level build.gradle file, apply the plugin:
apply plugin: 'persuades-ray-bhai'

//or
plugins {
  id 'persuades-ray-bhai'
}