Search Gradle plugins

Version 0.3.0

Created 02 February 2023.

APM for Android applications with the Elastic stack

Using the plugins DSL:

plugins {
  id("co.elastic.apm.android") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("co.elastic.apm:android-plugin:0.3.0")
  }
}

apply(plugin = "co.elastic.apm.android")

Using the plugins DSL:

plugins {
  id "co.elastic.apm.android" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "co.elastic.apm:android-plugin:0.3.0"
  }
}

apply plugin: "co.elastic.apm.android"

Learn how to apply plugins to subprojects