Search Gradle plugins

Version 1.0.0 (latest)

Created 30 January 2020.

A Gradle plugin that allows the publication of an APK to Huawei's App Gallery store

Using the plugins DSL:

plugins {
  id("com.yamilmedina.gallery-publisher") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.yamilmedina:gallery-publisher:1.0.0")
  }
}

apply(plugin = "com.yamilmedina.gallery-publisher")

Using the plugins DSL:

plugins {
  id "com.yamilmedina.gallery-publisher" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.yamilmedina:gallery-publisher:1.0.0"
  }
}

apply plugin: "com.yamilmedina.gallery-publisher"

Learn how to apply plugins to subprojects