-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
29 lines (25 loc) · 945 Bytes
/
build.gradle.kts
File metadata and controls
29 lines (25 loc) · 945 Bytes
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
plugins {
id("otel.android-library-conventions")
id("otel.publish-conventions")
}
description = "OpenTelemetry Android crash instrumentation"
android {
namespace = "io.opentelemetry.android.instrumentation.crash"
defaultConfig {
consumerProguardFiles("consumer-rules.pro")
}
}
dependencies {
api(platform(libs.opentelemetry.platform.alpha)) // Required for sonatype publishing
implementation(project(":instrumentation:android-instrumentation"))
implementation(project(":common"))
implementation(project(":services"))
implementation(project(":session"))
implementation(project(":instrumentation:common-api"))
implementation(project(":agent-api"))
implementation(libs.androidx.core)
implementation(libs.opentelemetry.semconv.incubating)
implementation(libs.opentelemetry.instrumentation.api)
testImplementation(libs.awaitility)
testImplementation(libs.robolectric)
}