Search Gradle plugins

Version 1.3 (latest)

1.3

Created 12 September 2019.

Upload apk to fir.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.shengsheng:apk-uploader:1.3")
      }
    }
    
    apply(plugin = "com.shengsheng.apk-uploader")
  • Applying plugins to all subprojects .