Skip to content

Commit 151a91d

Browse files
committed
change some bits
1 parent 33fedf9 commit 151a91d

File tree

1 file changed

+2
-2
lines changed
  • src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests

1 file changed

+2
-2
lines changed

src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AotTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ public void BuildBasicApplicationReleaseProfiledAotWithoutDefaultProfile ()
119119
public void BuildAotApplicationWithSpecialCharactersInProject (string testName, bool aot)
120120
{
121121
var rootPath = Path.Combine (Root, "temp", TestName);
122-
var proj = new XamarinFormsAndroidApplicationProject () {
122+
var proj = new XamarinAndroidApplicationProject () {
123123
ProjectName = testName,
124124
IsRelease = true,
125125
AotAssemblies = aot,
126126
};
127-
proj.SetAndroidSupportedAbis ("armeabi-v7a", "x86", "x86_64");
127+
proj.SetAndroidSupportedAbis ("armeabi-v7a", "arm64-v8a", "x86", "x86_64");
128128
using (var builder = CreateApkBuilder (Path.Combine (rootPath, proj.ProjectName))){
129129
Assert.IsTrue (builder.Build (proj), "Build should have succeeded.");
130130
}

0 commit comments

Comments
 (0)