Search Gradle plugins

com.sleepsci.eventsdroid

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

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.0"
}

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.0")
  }
}

apply(plugin = "com.sleepsci.eventsdroid")

Using the plugins DSL:

plugins {
  id "com.sleepsci.eventsdroid" version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.sleepsci.analytics:com.betterme.eventsdroid:0.9.0"
  }
}

apply plugin: "com.sleepsci.eventsdroid"

Learn how to apply plugins to subprojects