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

Created 17 April 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 "1.0.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.xmartlabs.snapshot-publisher:com.xmartlabs.snapshot-publisher.gradle.plugin:1.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.xmartlabs.snapshot-publisher")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.xmartlabs.snapshot-publisher:com.xmartlabs.snapshot-publisher.gradle.plugin:1.0.1")
      }
    }
    
    apply(plugin = "com.xmartlabs.snapshot-publisher")
  • Applying plugins to all subprojects .