Search Gradle plugins

Version 1.3 (latest)

Created 12 September 2019.

Upload apk to fir.

Using the plugins DSL:

plugins {
  id("com.shengsheng.apk-uploader") version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.shengsheng:apk-uploader:1.3")
  }
}

apply(plugin = "com.shengsheng.apk-uploader")

Using the plugins DSL:

plugins {
  id "com.shengsheng.apk-uploader" version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.shengsheng:apk-uploader:1.3"
  }
}

apply plugin: "com.shengsheng.apk-uploader"

Learn how to apply plugins to subprojects