From c1217504bac0fef88d1992db723319aee75bdf73 Mon Sep 17 00:00:00 2001 From: Nelson Osacky Date: Tue, 27 May 2025 16:27:06 +0200 Subject: [PATCH] Disable long dokka warning messages in the console These two long messages are now disabled: ``` > Configure project :sentry-compose Thank you for enabling Dokka Gradle plugin V2! To learn about migrating read the migration guide https://kotl.in/dokka-gradle-migration We would appreciate your feedback! - Please report any feedback or problems https://kotl.in/dokka-issues - Chat with the community visit #dokka in https://kotlinlang.slack.com/ (To sign up visit https://kotl.in/slack) You can suppress this message by adding org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true to your project's `gradle.properties` file. w: Kotlin Multiplatform <-> Android Gradle Plugin compatibility issue: The applied Android Gradle Plugin version (8.6.0) is higher than the maximum known to the Kotlin Gradle Plugin. Tooling stability in such configuration isn't tested, please report encountered issues to https://kotl.in/issue" Minimum supported Android Gradle Plugin version: 7.0 Maximum tested Android Gradle Plugin version: 8.2 To suppress this message add 'kotlin.mpp.androidGradlePluginCompatibility.nowarn=true' to your gradle.properties ``` --- sentry-compose/gradle.properties | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sentry-compose/gradle.properties b/sentry-compose/gradle.properties index fbae81eaf09..5ad025123aa 100644 --- a/sentry-compose/gradle.properties +++ b/sentry-compose/gradle.properties @@ -1,2 +1,6 @@ kotlin.mpp.stability.nowarn=true kotlin.mpp.androidSourceSetLayoutVersion=2 + +# Don't show Dokka plugin's long message on every build +kotlin.mpp.androidGradlePluginCompatibility.nowarn=true +org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true