com.m800.sdk.m800-services
Owner:
M800 RnD
A required plugin to make the M800 SDK(s) integration seamless.
Sources: https://docs.m800.com/
Version 1.2 (latest)
Created 22 July 2019.
A required plugin to make the M800 SDK(s) integration seamless.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.m800.sdk.m800-services") version "1.2"
}
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.m800.sdk.m800-services:com.m800.sdk.m800-services.gradle.plugin:1.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.m800.sdk.m800-services") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.m800.sdk.m800-services:com.m800.sdk.m800-services.gradle.plugin:1.2") } } apply(plugin = "com.m800.sdk.m800-services")
- Applying plugins to all subprojects .