io.snabble.setup
Owner:
René Kilczan
Plugin for simlified configutation of the Snabble Android SDK and metadata downloader
https://docs.snabble.io/docs/android/
Sources: https://github.com/snabble/Gradle-Plugin.git
Version 1.0.1 (latest)
Created 23 June 2022.
Plugin for simlified configutation of the Snabble Android SDK and metadata downloader
Add this plugin to your build using the plugins DSL:
plugins {
id("io.snabble.setup") 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("io.snabble.setup:io.snabble.setup.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.snabble.setup") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.snabble.setup:io.snabble.setup.gradle.plugin:1.0.1") } } apply(plugin = "io.snabble.setup")
- Applying plugins to all subprojects .