Install Groups
Control which Android builds can see updates for each other using install groups.
This feature is available only if you're in the Early Adopter program. Features available to Early Adopters are still in-progress and may have bugs. We recognize the irony.
Install groups let you tag builds with one or more group names to control update visibility between builds. See the product documentation for a full explanation of how install groups work.
Pass --install-group one or more times:
Copied
sentry-cli build upload app.apk \
--org your-org \
--project your-project \
--build-configuration Release \
--install-group alpha \
--install-group staging
Set installGroups in the distribution block:
build.gradle.ktsCopied
sentry {
distribution {
enabled = true
installGroups.set(setOf("alpha", "staging"))
}
}
Pass the install_groups parameter:
FastfileCopied
sentry_upload_build(
org_slug: 'your-org',
project_slug: 'your-project',
apk_path: 'path/to/app.apk',
build_configuration: 'Release',
install_groups: ['alpha', 'staging']
)
Was this helpful?
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").