Use per-project Sentry configuration (#4818)#4912
Merged
geekygecko merged 1 commit intorelease/8.4from Jan 27, 2026
Merged
Conversation
(cherry picked from commit 2a7da69)
Collaborator
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the build to use per-project Sentry configuration (auth/org + per-module project name) instead of relying on a shared sentry.properties, aligned with the current release branch.
Changes:
- Adds module-specific
sentry.projectNameconfiguration forapp,wear, andautomotive. - Adds shared Sentry auth/org configuration in the root Gradle Sentry setup.
- Moves Sentry secrets handling into
secret.properties(and updates.configureinputs accordingly).
Reviewed changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
app/build.gradle.kts |
Sets Sentry projectName from a Gradle property; updates release warning logic. |
wear/build.gradle.kts |
Sets Sentry projectName from a Gradle property; updates release warning logic. |
automotive/build.gradle.kts |
Sets Sentry projectName from a Gradle property; adds release warning logic. |
build.gradle.kts |
Renames and extends common Sentry configuration to include auth token + org. |
dependencies.gradle.kts |
Exposes Sentry secrets/projects from secret.properties as Gradle properties. |
.configure |
Stops copying/encrypting sentry.properties; updates pinned hash. |
.configure-files/secret.properties.enc |
Adds updated encrypted secrets payload containing the new Sentry-related properties. |
Comments suppressed due to low confidence (1)
.configure:15
- This removes the
sentry.propertiessecret from.configure, but the repo still contains.configure-files/sentry.properties.enc. To avoid confusion and keeping an unused secret artifact around, consider deleting the encrypted file as part of this change (or documenting why it must remain).
"pinned_hash": "f8db88d1a1d1149ce3a144b7c629e36717c885ea",
"files_to_copy": [
{
"file": "android/pocket-casts/secret.properties",
"destination": "secret.properties",
"encrypt": true
},
{
"file": "android/pocket-casts/google-services.json",
"destination": "app/google-services.json",
"encrypt": true
},
geekygecko
approved these changes
Jan 27, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This syncs Sentry configuration changes with the current release branch. See #4818 for rationale.