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 0.0.1

0.0.1

Created 07 March 2019.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.xmartlabs:snapshot-publisher:0.0.1")
      }
    }
    
    apply(plugin = "com.xmartlabs.snapshot-publisher")
  • Applying plugins to all subprojects .