Skip to content

Commit f42744c

Browse files
[tests] use default ABIs in MonoAndroidExportReferencedAppStarts
This test was failing under .NET 6 because it was doing: <RuntimeIdentifiers>android-arm;android-x86</RuntimeIdentifiers> This situation wouldn't even deploy on an API 31 emulator, so we should just add `x86_64` in this test.
1 parent b8d514d commit f42744c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)