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.2.0

2.2.0

Created 29 October 2020.

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

See also:

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