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)
1.2
Created 22 July 2019.
A required plugin to make the M800 SDK(s) integration seamless.
Using the plugins DSL:
plugins {
id("com.m800.sdk.m800-services") version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.m800.sdk:m800-services:1.2")
}
}
apply(plugin = "com.m800.sdk.m800-services")
Using the plugins DSL:
plugins {
id "com.m800.sdk.m800-services" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.m800.sdk:m800-services:1.2"
}
}
apply plugin: "com.m800.sdk.m800-services"