-
-
Notifications
You must be signed in to change notification settings - Fork 465
feat(distribution): Add installGroupsOverride parameter #5066
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
runningcode
wants to merge
3
commits into
main
Choose a base branch
from
no/add-install-groups-override-distribution
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+119
−2
Conversation
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
…on options Allows filtering distribution updates by install groups. Users can now configure installGroupsOverride in SentryOptions.DistributionOptions to restrict updates to specific install groups. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Contributor
Semver Impact of This PR🟡 Minor (new features) 📋 Changelog PreviewThis is how your changes will appear in the changelog. New Features ✨Distribution
Other
Bug Fixes 🐛
Internal Changes 🔧Deps
Other
🤖 This preview updates automatically when you update the PR. |
Contributor
|
Contributor
Performance metrics 🚀
|
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 27d7cf8 | 309.43 ms | 364.27 ms | 54.85 ms |
| f064536 | 335.52 ms | 408.79 ms | 73.27 ms |
| fc5ccaf | 256.80 ms | 322.36 ms | 65.56 ms |
| e59e22a | 368.02 ms | 432.00 ms | 63.98 ms |
| b750b96 | 408.98 ms | 480.32 ms | 71.34 ms |
| fcec2f2 | 328.91 ms | 387.75 ms | 58.84 ms |
| 9139b91 | 351.35 ms | 355.63 ms | 4.28 ms |
| 951caf7 | 323.66 ms | 392.82 ms | 69.16 ms |
| 18c0bc2 | 306.73 ms | 349.77 ms | 43.03 ms |
| dba088c | 365.46 ms | 366.31 ms | 0.85 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 27d7cf8 | 1.58 MiB | 2.12 MiB | 549.42 KiB |
| f064536 | 1.58 MiB | 2.20 MiB | 633.90 KiB |
| fc5ccaf | 1.58 MiB | 2.13 MiB | 557.54 KiB |
| e59e22a | 1.58 MiB | 2.20 MiB | 635.34 KiB |
| b750b96 | 1.58 MiB | 2.10 MiB | 533.19 KiB |
| fcec2f2 | 1.58 MiB | 2.12 MiB | 551.50 KiB |
| 9139b91 | 1.58 MiB | 2.13 MiB | 559.52 KiB |
| 951caf7 | 1.58 MiB | 2.13 MiB | 558.77 KiB |
| 18c0bc2 | 1.58 MiB | 2.13 MiB | 557.33 KiB |
| dba088c | 1.58 MiB | 2.13 MiB | 558.99 KiB |
Adds support for reading installGroupsOverride from sentry-distribution.properties file at runtime. This allows the Gradle plugin to configure install groups that will be automatically loaded when the SDK initializes. The property supports comma-separated values: io.sentry.distribution.install-groups-override=internal,beta-testers,qa Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
markushi
approved these changes
Jan 30, 2026
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.
Summary
Adds support for overriding distribution install groups via
SentryOptions.DistributionOptionsor properties file configuration. The properties file configuration allows future configuration via the Sentry Android Gradle plugin.Fixes EME-806
Usage
Programmatic Configuration
Properties File Configuration
In your
sentry-debug-meta.propertiesfile:io.sentry.distribution.install-groups-override=internal,beta-testers🤖 Generated with Claude Code