com.sleepsci.eventsdroid
Owner: Dmytro Ostapovets
Plugin which allows automatic analytics events generation based on the given schema
https://github.com/AppSci/Eventsdroid
Sources: https://github.com/AppSci/Eventsdroid
Version 0.9.1 (latest)
0.9.1
Created 22 March 2019.
Plugin which allows automatic analytics events generation based on the given schema
Using the plugins DSL:
plugins {
id("com.sleepsci.eventsdroid") version "0.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.sleepsci.analytics:com.betterme.eventsdroid:0.9.1")
}
}
apply(plugin = "com.sleepsci.eventsdroid")
Using the plugins DSL:
plugins {
id "com.sleepsci.eventsdroid" version "0.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.sleepsci.analytics:com.betterme.eventsdroid:0.9.1"
}
}
apply plugin: "com.sleepsci.eventsdroid"