Skip to content

Commit 1ab4f23

Browse files
Context: #6353 Changes: xamarin/monodroid@07a99d7...9b3a37a * xamarin/monodroid@9b3a37af1: [tools/msbuild] <GetPrimaryCpuAbi/> should not select 32-bit ABIs (#1228) Update `MonoAndroidExportTest.MonoAndroidExportReferencedAppStarts()` under .NET 6 to add `x86_64`, e.g. `$(AndroidSupportedAbis)`=`armeabi-v7a;x86;x86_64`. This is needed because the API-31 emulator only supports x86_64, not x86.
1 parent b4d322c commit 1ab4f23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.external

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
xamarin/monodroid:main@07a99d799289e90870243312ffd16f9e3187ec52
1+
xamarin/monodroid:main@9b3a37af1102f56ccaf449864f18a7d2a78e9682
22
mono/mono:2020-02@c633fe923832f0c3db3c4e6aa98e5592bf5a06e7

tests/MSBuildDeviceIntegration/Tests/MonoAndroidExportTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ protected override void OnCreate (Bundle bundle)
104104
}
105105
}
106106
}";
107-
proj.SetAndroidSupportedAbis ("armeabi-v7a", "x86");
107+
proj.SetAndroidSupportedAbis ("armeabi-v7a", "x86", "x86_64");
108108
proj.SetProperty ("EmbedAssembliesIntoApk", embedAssemblies.ToString ());
109109
proj.SetDefaultTargetDevice ();
110110
using (var b = CreateApkBuilder (Path.Combine ("temp", TestName))) {

0 commit comments

Comments
 (0)