Search Gradle plugins

com.xmartlabs.snapshot-publisher

Android Snapshot Publisher is a Gradle plugin to prepare and distribute Android Snapshot versions to multiple distribution sources in a common way.

https://github.com/xmartlabs/android-snapshot-publisher

Sources: https://github.com/xmartlabs/android-snapshot-publisher.git

Version 1.0.4

Created 02 October 2019.

Android Snapshot Publisher is a Gradle plugin to prepare and distribute Android Snapshot versions to multiple distribution sources in a common way.

Using the plugins DSL:

plugins {
  id("com.xmartlabs.snapshot-publisher") version "1.0.4"
}

Using legacy plugin application:

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

apply(plugin = "com.xmartlabs.snapshot-publisher")

Using the plugins DSL:

plugins {
  id "com.xmartlabs.snapshot-publisher" version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.xmartlabs:snapshot-publisher:1.0.4"
  }
}

apply plugin: "com.xmartlabs.snapshot-publisher"

Learn how to apply plugins to subprojects