Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

Created 26 June 2019.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Gradle Amazon App Store Publisher allows you to upload your APKs to the amazon app store

Add this plugin to your build using the plugins DSL:

plugins {
  id("app.brant.amazonappstorepublisher") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("app.brant:amazonappstorepublisher:0.1.0")
      }
    }
    
    apply(plugin = "app.brant.amazonappstorepublisher")
  • Applying plugins to all subprojects .