Search Gradle plugins

com.thl.releasehelper

Owner: Tong

A plugin that helps you upload your apk to fir, auto commit and push.

https://github.com/TongHongliang/releasehelper

Sources: https://github.com/

Version 1.1.0 (latest)

Created 31 October 2018.

A plugin that helps you upload your apk to fir, auto commit and push.

Using the plugins DSL:

plugins {
  id("com.thl.releasehelper") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.thl.releasehelper:buildSrc:1.1.0")
  }
}

apply(plugin = "com.thl.releasehelper")

Using the plugins DSL:

plugins {
  id "com.thl.releasehelper" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.thl.releasehelper:buildSrc:1.1.0"
  }
}

apply plugin: "com.thl.releasehelper"

Learn how to apply plugins to subprojects