-
Notifications
You must be signed in to change notification settings - Fork 537
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Xamarin.Android.Build.Tasks] Add AndroidInstallModules for apksets (#…
…5327) Context: #4810 Context: #4810 (comment) Context: https://developer.android.com/guide/app-bundle/play-feature-delivery Android introduced support for using [Android App Bundles][0] to package features into separately downloadable [feature modules][1]. When using app bundles, users install the application from an `apkset`. At this time this only contains the base application. However we might in the future support feature modules in some fashion. In this case developers should be able to pick which features they want installed. This commit adds an `@(AndroidInstallModules)` ItemGroup which will allow developers to specify which modules to install. By default it will be empty, which means that all modules which are to be installed on first install will be installed. There will be no change to current behavior when `@(AndroidInstallModules)` is empty. Also add support for passing additional arguments to `bundletool` via the new `$(AndroidBundleToolExtraArgs)` property. [0]: https://developer.android.com/guide/app-bundle [1]: https://developer.android.com/guide/app-bundle/play-feature-delivery
- Loading branch information
1 parent
52bc127
commit ee4b983
Showing
6 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### Build and deployment performance | ||
|
||
* [GitHub PR 5327](https://github.com/xamarin/xamarin-android/pull/5327): | ||
Allow users to specify additional app bundle "modules" when | ||
building using `$(AndroidPackageFormat)` set to `aab`. In the | ||
future this will help us support [Dynamic Features](https://developer.android.com/guide/app-bundle/play-feature-delivery) |
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
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
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