Skip to content

Commit 0a162ea

Browse files
committed
rework
1 parent 91ca24a commit 0a162ea

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

Documentation/guides/building-apps/build-items.md

+7
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,13 @@ you can use the following to add this for a debug build.
146146

147147
Introduced in Xamarin.Android 11.2
148148

149+
## AndroidInstallModules
150+
151+
Specifies the modules which get installed by **bundletool** command when
152+
installing app bundles.
153+
154+
Introduced in Xamarin.Android 11.3
155+
149156
## AndroidNativeLibrary
150157

151158
[Native libraries](~/android/platform/native-libraries.md)

Documentation/guides/building-apps/build-properties.md

-5
Original file line numberDiff line numberDiff line change
@@ -639,11 +639,6 @@ APK root directory. The format of the path is `lib\ARCH\wrap.sh` where
639639
+ `x86_64`
640640
+ `x86`
641641

642-
## AndroidInstallModules
643-
644-
Specifies the modules which get installed by **bundletool** command when
645-
installing app bundles.
646-
647642
## AndroidJavadocVerbosity
648643

649644
Specifies how "verbose"

src/Xamarin.Android.Build.Tasks/Tasks/InstallApkSet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ internal override CommandLineBuilder GetCommandLineBuilder ()
3333
if (Modules == null)
3434
cmd.AppendSwitchIfNotNull ("--modules ", "_ALL_");
3535
else
36-
cmd.AppendSwitchIfNotNull ("--modules", string.Join ("\",\"", Modules));
36+
cmd.AppendSwitchIfNotNull ("--modules", $"\"{string.Join ("\",\"", Modules)}\"");
3737

3838
return cmd;
3939
}

0 commit comments

Comments
 (0)