You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gradle/libs.versions.toml
+26-5Lines changed: 26 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5,42 +5,49 @@ androidxNavigation = "2.4.2"
5
5
androidxTestCore = "1.7.0"
6
6
androidxCompose = "1.6.3"
7
7
asyncProfiler = "4.2"
8
+
camerax = "1.4.0"
8
9
composeCompiler = "1.5.14"
9
10
coroutines = "1.6.1"
10
11
espresso = "3.7.0"
11
12
feign = "11.6"
13
+
gummyBears = "0.12.0"
12
14
jacoco = "0.8.7"
13
15
jackson = "2.18.3"
14
16
jetbrainsCompose = "1.6.11"
15
17
kotlin = "2.2.0"
16
18
kotlinSpring7 = "2.2.0"
17
19
kotlin-compatible-version = "1.9"
20
+
ksp = "2.2.0-2.0.2"
18
21
ktorClient = "3.0.0"
19
22
logback = "1.2.9"
20
23
log4j2 = "2.20.0"
21
24
nopen = "1.0.1"
22
25
# see https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-compatibility-and-versioning.html#kotlin-compatibility
23
26
# see https://developer.android.com/jetpack/androidx/releases/compose-kotlin
24
27
okhttp = "4.9.2"
28
+
openfeature = "1.18.2"
25
29
otel = "1.60.1"
26
30
otelInstrumentation = "2.26.0"
27
31
otelInstrumentationAlpha = "2.26.0-alpha"
28
32
# check https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/dependencyManagement/build.gradle.kts#L49 for release version above to find a compatible version
29
33
otelSemanticConventions = "1.40.0"
30
34
otelSemanticConventionsAlpha = "1.40.0-alpha"
31
35
retrofit = "2.9.0"
36
+
room2 = "2.8.4"
37
+
room3 = "3.0.0-alpha06"
38
+
sqlite = "2.6.2"
39
+
sqliteAlpha = "2.7.0-alpha06"# Required by Room3 3.0.0-alpha*
32
40
slf4j = "1.7.30"
41
+
spotless = "8.4.0"
33
42
springboot2 = "2.7.18"
34
43
springboot3 = "3.5.0"
35
44
springboot4 = "4.0.0"
45
+
sqldelight = "2.3.2"
46
+
36
47
# Android
37
48
targetSdk = "36"
38
49
compileSdk = "36"
39
50
minSdk = "21"
40
-
spotless = "8.4.0"
41
-
gummyBears = "0.12.0"
42
-
camerax = "1.4.0"
43
-
openfeature = "1.18.2"
44
51
45
52
[plugins]
46
53
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
Sample application demonstrating how to use the Sentry Android SDK, including core functionality (error reporting, tracing, session replay, profiling) and integrations (Compose, OkHttp, SQLDelight, etc.).
or simply open the project in Android Studio and run the `sentry-samples-android` configuration.
14
+
15
+
## Viewing events locally
16
+
17
+
Debug builds enable SDK debug logging, so captured envelopes are printed to logcat (tag `Sentry`):
18
+
19
+
```
20
+
adb logcat -s Sentry
21
+
```
22
+
23
+
## Viewing events on Sentry UI
24
+
25
+
By default, events appear under the [sentry-sdk test project](https://sentry-sdks.sentry.io/issues/?project=5428559).
26
+
To redirect them to your own project, replace the test DSN (i.e., the `io.sentry.dsn``meta-data` value)
0 commit comments