co.elastic.apm.android
APM for Android applications with the Elastic stack
Sources: https://github.com/elastic/apm-agent-android
Version 0.20.0 (latest)
0.20.0
Created 29 July 2024.
APM for Android applications with the Elastic stack
Using the plugins DSL:
plugins {
id("co.elastic.apm.android") version "0.20.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("co.elastic.apm:android-plugin:0.20.0")
}
}
apply(plugin = "co.elastic.apm.android")
Using the plugins DSL:
plugins {
id "co.elastic.apm.android" version "0.20.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "co.elastic.apm:android-plugin:0.20.0"
}
}
apply plugin: "co.elastic.apm.android"