forked from open-telemetry/opentelemetry-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
38 lines (35 loc) · 1.19 KB
/
settings.gradle.kts
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
36
37
38
rootProject.name = "opentelemetry-android"
plugins {
id("com.gradle.develocity") version "3.19.1"
}
develocity {
buildScan {
publishing.onlyIf { System.getenv("CI") != null }
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfUseAgree.set("yes")
}
}
include(":core")
include(":android-agent")
include(":instrumentation:activity")
include(":instrumentation:anr")
include(":instrumentation:common-api")
include(":instrumentation:crash")
include(":instrumentation:fragment")
include(":instrumentation:okhttp:okhttp-3.0:agent")
include(":instrumentation:okhttp:okhttp-3.0:library")
include(":instrumentation:okhttp:okhttp-3.0:testing")
include(":instrumentation:network")
include(":instrumentation:sessions")
include(":instrumentation:slowrendering")
include(":instrumentation:startup")
include(":instrumentation:volley:library")
include(":instrumentation:httpurlconnection:agent")
include(":instrumentation:httpurlconnection:library")
include(":instrumentation:httpurlconnection:testing")
include(":test-common")
include(":animal-sniffer-signature")
include(":instrumentation:android-instrumentation")
include(":common")
include(":services")
include(":session")