搜索Gradle插件

com.thl.releasehelper

拥有者:

一款帮助您上传APK到fir、自动提交和推送的插件。

https://github.com/TongHongliang/releasehelper

来源: https://github.com/

版本 1.1.0(最新版本)

1.1.0

创建于2018年10月31日。

一款帮助您上传APK到fir、自动提交和推送的插件。

使用插件DSL

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

使用旧版插件应用

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

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

使用插件DSL

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

使用旧版插件应用

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

apply plugin: "com.thl.releasehelper"

了解如何将插件应用到子项目中