Skip to content

Commit

Permalink
Fix DeviceAbi selection
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed May 30, 2024
1 parent 4212bea commit 219983c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/MSBuildDeviceIntegration/Tests/DebuggingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,8 @@ public Foo ()
app.SetProperty ("AndroidPackageFormat", packageFormat);
app.MainPage = app.MainPage.Replace ("InitializeComponent ();", "InitializeComponent (); new Foo ();");
app.AddReference (lib);
var abis = new [] { "x86", DeviceAbi };
var abis = new [] { DeviceAbi };
app.SetRuntimeIdentifiers (abis);
//app.SetAndroidSupportedAbis (DeviceAbi);
app.SetProperty (KnownProperties._AndroidAllowDeltaInstall, allowDeltaInstall.ToString ());
app.SetDefaultTargetDevice ();
using (var libBuilder = CreateDllBuilder (Path.Combine (path, lib.ProjectName)))
Expand Down

0 comments on commit 219983c

Please sign in to comment.