Skip to content

Commit 78dc179

Browse files
committed
fix(compose): Switch to compileOnly dependency for compose-ui-material (#4630)
* fix(compose): Switch to compileOnly dependency for compose-ui-material * Changelog
1 parent 58ac0d4 commit 78dc179

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
- Previously events were recorded as lost early despite being retried later through the cache
3535
- Move and flush unfinished previous session on init ([#4624](https://github.com/getsentry/sentry-java/pull/4624))
3636
- This removes the need for unnecessary blocking our background queue for 15 seconds in the case of a background app start
37+
- Switch to compileOnly dependency for compose-ui-material ([#4630](https://github.com/getsentry/sentry-java/pull/4630))
38+
- This fixes `StackOverflowError` when using OSS Licenses plugin
3739

3840
### Dependencies
3941

sentry-compose/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ kotlin {
4343
dependencies {
4444
api(projects.sentry)
4545
api(projects.sentryAndroidNavigation)
46-
implementation(libs.androidx.compose.material3)
4746

47+
compileOnly(libs.androidx.compose.material3)
4848
compileOnly(libs.androidx.navigation.compose)
4949
implementation(libs.androidx.lifecycle.common.java8)
5050
}

0 commit comments

Comments
 (0)