Search Gradle plugins

Version 0.1.0 (latest)

Created 26 June 2019.

Gradle Amazon App Store Publisher allows you to upload your APKs to the amazon app store

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("app.brant:amazonappstorepublisher:0.1.0")
  }
}

apply(plugin = "app.brant.amazonappstorepublisher")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "app.brant:amazonappstorepublisher:0.1.0"
  }
}

apply plugin: "app.brant.amazonappstorepublisher"

Learn how to apply plugins to subprojects