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 2.4.1 (latest)

Created 01 February 2022.

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 "2.4.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects