Update documentation to reflect .aab fast deployment support#10963
Merged
jonathanpeppers merged 2 commits intomainfrom Mar 18, 2026
Merged
Update documentation to reflect .aab fast deployment support#10963jonathanpeppers merged 2 commits intomainfrom
jonathanpeppers merged 2 commits intomainfrom
Conversation
Co-authored-by: jonathanpeppers <840039+jonathanpeppers@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
jonathanpeppers
March 17, 2026 21:54
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Updates .NET for Android documentation to reflect that Fast Deployment can be used with Android App Bundles (.aab)—with the tradeoff that deployments are slower due to bundletool processing—improving guidance for asset pack testing and related build properties.
Changes:
- Replace “
.aabdisables fast deployment” guidance with a note explaining.aab+ fast deployment is supported but slower due tobundletool. - Remove XA0119 troubleshooting guidance that advised against using
AndroidPackageFormat=aabin Debug. - Update build property and build process docs to consistently describe fast deployment behavior for both
.apkand.aab.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| Documentation/guides/AndroidAssetPacks.md | Clarifies Debug-time asset pack testing with .aab and explains fast deployment performance implications. |
| Documentation/docs-mobile/messages/xa0119.md | Removes outdated Debug guidance discouraging App Bundles. |
| Documentation/docs-mobile/building-apps/build-properties.md | Updates fast deployment and package format documentation to include .aab support and terminology. |
| Documentation/docs-mobile/building-apps/build-process.md | Documents that fast deployment works with both .apk and .aab, and notes the bundletool overhead for .aab. |
Copilot AI
added a commit
to dotnet/docs-mobile
that referenced
this pull request
Mar 17, 2026
Mirrors dotnet/android#10963. Fast deployment now works with .aab files (Android App Bundles), so documentation is updated accordingly. Co-authored-by: jonathanpeppers <840039+jonathanpeppers@users.noreply.github.com>
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.
Summary
Updates documentation across multiple files to reflect that fast deployment now works with
.aabfiles (Android App Bundles), as implemented in PR #8990.Context: #9455 (comment)
Changes
Documentation/guides/AndroidAssetPacks.md: Removed incorrect statement that settingAndroidPackageFormattoaabdisables fast deployment. Added note explaining.aabis supported but slower than.apkdue tobundletoolprocessing.Documentation/docs-mobile/building-apps/build-process.md: Updated Fast Deployment section to explicitly state support for both.apkand.aabpackage formats, with caveat about performance difference.Documentation/docs-mobile/building-apps/build-properties.md: UpdatedAndroidFastDeploymentType,EmbedAssembliesIntoApk, andAndroidPackageFormatsproperty descriptions to reflect.aabsupport. Softened the recommendation against usingaabfor debugging.Documentation/docs-mobile/messages/xa0119.md: Removed the "App Bundles" bullet from the list of non-ideal Debug configuration settings, since using.aabin Debug is now a valid scenario (e.g., for testing asset packs) with fast deployment support.