co.elastic.apm.android
所有者: 弹性发布工程技术团队
使用弹性堆栈的APM为Android应用程序
来源:https://github.com/elastic/apm-agent-android
使用 plugins DSL
plugins {
id("co.elastic.apm.android") version "0.20.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("co.elastic.apm:android-plugin:0.20.0")
}
}
apply(plugin = "co.elastic.apm.android")
使用 plugins DSL
plugins {
id "co.elastic.apm.android" version "0.20.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "co.elastic.apm:android-plugin:0.20.0"
}
}
apply plugin: "co.elastic.apm.android"