We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--no-upload
1 parent 5626a1c commit 07c2d65Copy full SHA for 07c2d65
CHANGES
@@ -1,12 +1,12 @@
1
Version 1.7.18
2
--------------
3
4
--
+- Fix `--no-upload` option in Sentry Gradle Plugin under newer Groovy.
5
6
Version 1.7.17
7
8
9
-- Fixes for Sentry Gradle Plugin when using Android Studio 3.3 and Gradle 5.1.
+- Fix for Sentry Gradle Plugin when using Android Studio 3.3 and Gradle 5.1.
10
11
Version 1.7.16
12
sentry-android-gradle-plugin/src/main/groovy/io/sentry/android/gradle/SentryPlugin.groovy
@@ -244,7 +244,7 @@ class SentryPlugin implements Plugin<Project> {
244
]
245
246
if (!extension.autoUpload) {
247
- args.push("--no-upload")
+ args << "--no-upload"
248
}
249
250
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
0 commit comments