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