We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 606823f commit 063f12aCopy full SHA for 063f12a
sentry-compose/build.gradle.kts
@@ -21,7 +21,7 @@ kotlin {
21
android {
22
publishLibraryVariants("release")
23
}
24
- jvm() {
+ jvm("desktop") {
25
compilations.all {
26
kotlinOptions.jvmTarget = JavaVersion.VERSION_1_8.toString()
27
@@ -42,21 +42,12 @@ kotlin {
42
api(compose.ui)
43
44
implementation(Config.Libs.kotlinStdLib)
45
- }
46
47
-
48
- val jvmMain by getting {
49
- dependencies {
50
- api(projects.sentry)
51
- implementation(Config.Libs.kotlinStdLib)
52
api(projects.sentryComposeHelper)
53
54
55
56
val androidMain by getting {
57
- dependsOn(jvmMain)
58
59
dependencies {
+ api(projects.sentry)
60
api(projects.sentryAndroidNavigation)
61
62
api(Config.Libs.composeNavigation)
0 commit comments