forked from open-telemetry/opentelemetry-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
35 lines (30 loc) · 1.1 KB
/
build.gradle.kts
File metadata and controls
35 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
plugins {
id("otel.android-library-conventions")
id("otel.publish-conventions")
}
android {
namespace = "io.opentelemetry.android.agent"
}
dependencies {
api(project(":core"))
api(platform(libs.opentelemetry.platform.alpha))
api(libs.opentelemetry.instrumentation.api)
implementation(project(":common"))
implementation(project(":session"))
implementation(project(":services"))
implementation(libs.opentelemetry.exporter.otlp)
// Default instrumentations:
api(project(":instrumentation:activity"))
api(project(":instrumentation:anr"))
api(project(":instrumentation:crash"))
api(project(":instrumentation:fragment"))
api(project(":instrumentation:network"))
api(project(":instrumentation:slowrendering"))
api(project(":instrumentation:startup"))
api(project(":instrumentation:sessions"))
testImplementation(libs.robolectric)
}
extra["pomName"] = "OpenTelemetry Android Agent"
description =
"A library that contains all the commonly needed instrumentation for Android apps in a " +
"convenient way with minimum configuration needed."