Created
March 12, 2023 06:40
-
-
Save MohammadAzimi/5895c8a60507c0823bfaede0a5570cfc to your computer and use it in GitHub Desktop.
Disable sentry source map upload (Android)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// avoid uploading sourcemap: add these line at the end of: | |
// app/build.gradle | |
gradle.projectsEvaluated { | |
def tasksToSkip = project.tasks.matching { | |
it.name.contains("SentryUpload") | |
} | |
tasksToSkip.all { enabled = false } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment