Xamarin Android App Bundle (.aab) Build #3660
Unanswered
ysipankaja
asked this question in
Extension Q&A
Replies: 1 comment
-
You can specify the properties to build it. Here is a code sample configurator
.SetConfiguration(BuildParameters.Configuration)
.WithProperty("Platform", BuildParameters.Platform)
.SetVerbosity(Verbosity.Normal)
//.WithProperty("RestoreConfigFile", $"{BuildDirectory}/Nuget.config")
.WithRestore()
.WithProperty("BuildIpa", "true")
.WithProperty("AndroidBuildApplicationPackage", "true")
//.WithProperty("Project", "iPartner.Android")
.WithProperty("CodesignKey", BuildParameters.CertTypes[BranchProject].IOSTeam)
.WithProperty("CodesignProvision", provisionType)
.WithProperty("MtouchNoSymbolStrip", "false")
.WithProperty("ArchiveOnBuild", "true")
.WithLogger(
Context.Tools.Resolve("MSBuild.ExtensionPack.Loggers.dll").FullPath,
"XmlFileLogger",
$"logfile=\"{BuildParameters.LogPath}\";verbosity=Detailed;encoding=UTF-8"
)
); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Team,
I am using Cake Build to automate the build process of my Xamarin project.
Using Cake Method "BuildAndroidApk", I am able to create the Android Build, i.e. .apk file.
But now, I also want to create the Android Bundle i.e. .aab file.
I was unable to find something for it.
So can someone please help?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions