Search Gradle plugins

Version 0.16.0 (latest)

Created 03 April 2024.

APM for Android applications with the Elastic stack

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects