Skip to content

Commit 0555f6a

Browse files
authored
[Xamarin.Android.Build.Tasks] fastdev works with aab files (#8990)
Context: xamarin/monodroid@c6aae9e Changes: xamarin/monodroid@93ab95e...c6aae9e * xamarin/monodroid@c6aae9e5a: [tools/msbuild] Allow aab to use Fast Deployment. (xamarin/monodroid#1201) * xamarin/monodroid@1f7b83f50: Bump to xamarin/xamarin-android/main@f5fcd4d (xamarin/monodroid#1492) * xamarin/monodroid@4cda6063b: Bump to xamarin/androidtools@63b52d2 (xamarin/monodroid#1487) * xamarin/monodroid@2712c4863: Bump to xamarin/android-sdk-installer@0b8f403 (xamarin/monodroid#1489) * xamarin/monodroid@2a85ae88f: Bump to xamarin/xamarin-android/main@935808b (xamarin/monodroid#1491) * xamarin/monodroid@92b297ca1: Bump to xamarin/xamarin-android/main@c6117431 (xamarin/monodroid#1490) * xamarin/monodroid@7fe876775: Force loc task pool image to windows (xamarin/monodroid#1486) Commit xamarin/monodroid@c6aae9e5a removed the restriction from using `.aab` files during fast deployment. While using an `.aab` will still be slower that using an `.apk`, it should still speed up the development process for those using things like asset packs. The reason it is slower is because the `.aab` file has to go through `bundle-tool` to be packaged and installed. This is a slow process. The `.apk` is much faster as we work with it directly. Numerous unit tests have been updated to test fast deployment when using `.aab` files. As a result we have had to increase the number of CI bots we use so we can spread out the new tests amongst more machines.
1 parent 553e927 commit 0555f6a

File tree

9 files changed

+54
-19
lines changed

9 files changed

+54
-19
lines changed

.external

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
xamarin/monodroid:main@93ab95e18077d56d9d55ce7b4069a534e2dea35e
1+
xamarin/monodroid:main@c6aae9e5a154cfbf2c3a94e046fa2c747c3b82e2

Xamarin.Android.code-workspace

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
}
66
],
77
"settings": {
8-
"nxunitExplorer.logpanel": true
8+
"nxunitExplorer.logpanel": true,
9+
"java.compile.nullAnalysis.mode": "disabled"
910
}
1011
}

build-tools/automation/yaml-templates/stage-msbuild-emulator-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
stageName: msbuilddevice_tests
55
job_name: 'mac_dotnetdevice_tests'
66
dependsOn: mac_build
7-
agent_count: 8
7+
agent_count: 12
88
stageCondition: succeeded()
99
stagePrefix: ''
1010
xaSourcePath: $(System.DefaultWorkingDirectory)

build-tools/automation/yaml-templates/stage-msbuild-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ stages:
2222
testOS: macOS
2323
jobName: mac_msbuild_tests
2424
jobDisplayName: macOS > Tests > MSBuild
25-
agentCount: 8
25+
agentCount: 14
2626
xaSourcePath: ${{ parameters.xaSourcePath }}
2727
repositoryAlias: ${{ parameters.repositoryAlias }}
2828
commit: ${{ parameters.commit }}

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

+2
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ static bool IsFromAKnownRuntimePack (ITaskItem assembly)
146146
// Sometimes .pdb files are not included in @(ResolvedFileToPublish), so add them if they exist
147147
if (File.Exists (symbolPath)) {
148148
symbols [symbolPath] = symbol = new TaskItem (symbolPath);
149+
return symbol;
149150
}
150151
}
151152
return symbol;
@@ -185,6 +186,7 @@ void SetIt (ITaskItem? item)
185186
}
186187

187188
string destination = Path.Combine (abi, item.GetMetadata ("DestinationSubDirectory"));
189+
//Log.LogDebugMessage ($"DEBUG!!!'{item.ItemSpec}' '{rid}' = '{abi}'. DestinationSubDirectory='{destination}'");
188190
item.SetMetadata ("DestinationSubDirectory", destination + Path.DirectorySeparatorChar);
189191
item.SetMetadata ("DestinationSubPath", Path.Combine (destination, Path.GetFileName (item.ItemSpec)));
190192
}

src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Utilities/DeviceTest.cs

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
using System.Xml.Linq;
1212
using System.Xml.XPath;
1313
using Xamarin.ProjectTools;
14+
using System.Runtime.InteropServices;
1415

1516
namespace Xamarin.Android.Build.Tests
1617
{
@@ -77,7 +78,10 @@ public void DeviceSetup ()
7778
}
7879
SetAdbLogcatBufferSize (128);
7980
CreateGuestUser (GuestUserName);
81+
return;
8082
}
83+
TestContext.Out.WriteLine ($"LOG DeviceSetup: No Device!!!!");
84+
DeviceAbi = RuntimeInformation.OSArchitecture == Architecture.Arm64 ? "arm64-v8a" : "x86_64";
8185
}
8286

8387
[OneTimeTearDown]

src/Xamarin.Android.Build.Tasks/Xamarin.Android.Common.targets

-4
Original file line numberDiff line numberDiff line change
@@ -496,10 +496,6 @@ Copyright (C) 2011-2012 Xamarin. All rights reserved.
496496
ResourceName="XA0119_LinkTool"
497497
Condition=" '$(EmbedAssembliesIntoApk)' != 'True' And '$(AndroidLinkTool)' != '' "
498498
/>
499-
<AndroidWarning Code="XA0119"
500-
ResourceName="XA0119_AAB"
501-
Condition=" '$(EmbedAssembliesIntoApk)' != 'True' And '$(AndroidPackageFormat)' == 'aab' "
502-
/>
503499
<AndroidWarning Code="XA0119"
504500
ResourceName="XA0119_Interpreter"
505501
Condition=" '$(AndroidUseInterpreter)' == 'True' And '$(AotAssemblies)' == 'True' "

tests/MSBuildDeviceIntegration/Tests/DebuggingTest.cs

+21-1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,11 @@ public void ClassLibraryMainLauncherRuns ([Values (true, false)] bool preloadAss
151151
/* activityStarts */ true,
152152
/* packageFormat */ "aab",
153153
},
154+
new object[] {
155+
/* embedAssemblies */ false,
156+
/* activityStarts */ true,
157+
/* packageFormat */ "aab",
158+
},
154159
};
155160
#pragma warning restore 414
156161

@@ -325,13 +330,27 @@ public override void OnCreate ()
325330
/* packageFormat */ "aab",
326331
/* useLatestSdk */ true,
327332
},
333+
new object[] {
334+
/* embedAssemblies */ false,
335+
/* allowDeltaInstall */ false,
336+
/* user */ null,
337+
/* packageFormat */ "aab",
338+
/* useLatestSdk */ true,
339+
},
328340
new object[] {
329341
/* embedAssemblies */ true,
330342
/* allowDeltaInstall */ false,
331343
/* user */ DeviceTest.GuestUserName,
332344
/* packageFormat */ "aab",
333345
/* useLatestSdk */ true,
334346
},
347+
new object[] {
348+
/* embedAssemblies */ false,
349+
/* allowDeltaInstall */ false,
350+
/* user */ DeviceTest.GuestUserName,
351+
/* packageFormat */ "aab",
352+
/* useLatestSdk */ true,
353+
},
335354
};
336355
#pragma warning restore 414
337356

@@ -388,7 +407,8 @@ public Foo ()
388407
app.SetProperty ("AndroidPackageFormat", packageFormat);
389408
app.MainPage = app.MainPage.Replace ("InitializeComponent ();", "InitializeComponent (); new Foo ();");
390409
app.AddReference (lib);
391-
app.SetAndroidSupportedAbis (DeviceAbi);
410+
var abis = new [] { DeviceAbi };
411+
app.SetRuntimeIdentifiers (abis);
392412
app.SetProperty (KnownProperties._AndroidAllowDeltaInstall, allowDeltaInstall.ToString ());
393413
app.SetDefaultTargetDevice ();
394414
using (var libBuilder = CreateDllBuilder (Path.Combine (path, lib.ProjectName)))

tests/MSBuildDeviceIntegration/Tests/InstallTests.cs

+22-10
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,9 @@ public void TestAndroidStoreKey (bool useApkSigner, bool isRelease, string packa
455455

456456
// https://xamarin.github.io/bugzilla-archives/31/31705/bug.html
457457
[Test]
458-
public void LocalizedAssemblies_ShouldBeFastDeployed ()
458+
[TestCase ("apk")]
459+
[TestCase ("aab")]
460+
public void LocalizedAssemblies_ShouldBeFastDeployed (string packageFormat)
459461
{
460462
AssertCommercialBuild ();
461463

@@ -469,6 +471,7 @@ public void LocalizedAssemblies_ShouldBeFastDeployed ()
469471
EmbedAssembliesIntoApk = false,
470472
};
471473
InlineData.AddCultureResourcesToProject (app, "Foo", "CancelButton");
474+
app.SetProperty ("AndroidPackageFormat", packageFormat);
472475
app.References.Add (new BuildItem.ProjectReference ($"..\\{lib.ProjectName}\\{lib.ProjectName}.csproj", lib.ProjectName, lib.ProjectGuid));
473476

474477
using (var libBuilder = CreateDllBuilder (Path.Combine (path, lib.ProjectName)))
@@ -494,12 +497,14 @@ public void LocalizedAssemblies_ShouldBeFastDeployed ()
494497
}
495498

496499
[Test]
497-
public void IncrementalFastDeployment ()
500+
[TestCase ("apk")]
501+
[TestCase ("aab")]
502+
public void IncrementalFastDeployment (string packageFormat)
498503
{
499504
AssertCommercialBuild ();
500505

501506
var class1src = new BuildItem.Source ("Class1.cs") {
502-
TextContent = () => "namespace Library1 { public class Class1 { public static int foo = 0; } }"
507+
TextContent = () => "namespace Library1 { public class Class1 { public static int foo = 500; } }"
503508
};
504509
var lib1 = new XamarinAndroidLibraryProject () {
505510
ProjectName = "Library1",
@@ -509,7 +514,7 @@ public void IncrementalFastDeployment ()
509514
};
510515

511516
var class2src = new BuildItem.Source ("Class2.cs") {
512-
TextContent = () => "namespace Library2 { public class Class2 { public static int foo = 0; } }"
517+
TextContent = () => "namespace Library2 { public class Class2 { public static int foo = 40; } }"
513518
};
514519
var lib2 = new DotNetStandard {
515520
ProjectName = "Library2",
@@ -527,16 +532,21 @@ public void IncrementalFastDeployment ()
527532
new BuildItem ("ProjectReference", "..\\Library2\\Library2.csproj"),
528533
},
529534
};
535+
app.SetProperty ("AndroidPackageFormat", packageFormat);
530536

531537
// Set up library projects
532538
var rootPath = Path.Combine (Root, "temp", TestName);
533-
using (var lb1 = CreateDllBuilder (Path.Combine (rootPath, lib1.ProjectName)))
539+
using (var lb1 = CreateDllBuilder (Path.Combine (rootPath, lib1.ProjectName))) {
540+
lb1.BuildLogFile = "build.log";
534541
Assert.IsTrue (lb1.Build (lib1), "First library build should have succeeded.");
535-
using (var lb2 = CreateDllBuilder (Path.Combine (rootPath, lib2.ProjectName)))
542+
}
543+
using (var lb2 = CreateDllBuilder (Path.Combine (rootPath, lib2.ProjectName))) {
544+
lb2.BuildLogFile = "build.log";
536545
Assert.IsTrue (lb2.Build (lib2), "Second library build should have succeeded.");
546+
}
537547

538548
long lib1FirstBuildSize = new FileInfo (Path.Combine (rootPath, lib1.ProjectName, lib1.OutputPath, "Library1.dll")).Length;
539-
549+
540550
using (var builder = CreateApkBuilder (Path.Combine (rootPath, app.ProjectName))) {
541551
builder.Verbosity = LoggerVerbosity.Detailed;
542552
builder.ThrowOnBuildFailure = false;
@@ -560,13 +570,15 @@ public void IncrementalFastDeployment ()
560570
File.SetLastWriteTimeUtc (file, DateTime.UtcNow);
561571
}
562572

563-
class1src.TextContent = () => "namespace Library1 { public class Class1 { public static int foo = 100; } }";
573+
class1src.TextContent = () => "namespace Library1 { public class Class1 { public static int foo = 1; } }";
564574
class1src.Timestamp = DateTime.UtcNow.AddSeconds(1);
565-
using (var lb1 = CreateDllBuilder (Path.Combine (rootPath, lib1.ProjectName)))
575+
using (var lb1 = CreateDllBuilder (Path.Combine (rootPath, lib1.ProjectName))) {
576+
lb1.BuildLogFile = "build2.log";
566577
Assert.IsTrue (lb1.Build (lib1), "Second library build should have succeeded.");
578+
}
567579

568580
long lib1SecondBuildSize = new FileInfo (Path.Combine (rootPath, lib1.ProjectName, lib1.OutputPath, "Library1.dll")).Length;
569-
Assert.AreEqual (lib1FirstBuildSize, lib1SecondBuildSize, "Library2.dll was not the same size.");
581+
Assert.AreEqual (lib1FirstBuildSize, lib1SecondBuildSize, "Library1.dll was not the same size.");
570582

571583
builder.BuildLogFile = "install3.log";
572584
Assert.IsTrue (builder.Install (app, doNotCleanupOnUpdate: true, saveProject: false), "Third install should have succeeded.");

0 commit comments

Comments
 (0)