diff --git a/src/platforms/android/configuration/gradle.mdx b/src/platforms/android/configuration/gradle.mdx index a6022f28dde59..6d41f0201f3a6 100644 --- a/src/platforms/android/configuration/gradle.mdx +++ b/src/platforms/android/configuration/gradle.mdx @@ -88,6 +88,11 @@ sentry { // Default is disabled. uploadNativeSymbols = false + // Whether the plugin should attempt to auto-upload the native debug symbols to Sentry or not. + // If disabled the plugin will run a dry-run. + // Default is enabled. + autoUploadNativeSymbols = true + // Does or doesn't include the source code of native code for Sentry. // This executes sentry-cli with the --include-sources param. automatically so // you don't need to do it manually. @@ -177,6 +182,11 @@ sentry { // Default is disabled. uploadNativeSymbols.set(false) + // Whether the plugin should attempt to auto-upload the native debug symbols to Sentry or not. + // If disabled the plugin will run a dry-run. + // Default is enabled. + autoUploadNativeSymbols.set(true) + // Does or doesn't include the source code of native code for Sentry. // This executes sentry-cli with the --include-sources param. automatically so // you don't need to do it manually.