Skip to content

Commit

Permalink
change some bits
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Mar 8, 2023
1 parent 33fedf9 commit 151a91d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ public void BuildBasicApplicationReleaseProfiledAotWithoutDefaultProfile ()
public void BuildAotApplicationWithSpecialCharactersInProject (string testName, bool aot)
{
var rootPath = Path.Combine (Root, "temp", TestName);
var proj = new XamarinFormsAndroidApplicationProject () {
var proj = new XamarinAndroidApplicationProject () {
ProjectName = testName,
IsRelease = true,
AotAssemblies = aot,
};
proj.SetAndroidSupportedAbis ("armeabi-v7a", "x86", "x86_64");
proj.SetAndroidSupportedAbis ("armeabi-v7a", "arm64-v8a", "x86", "x86_64");
using (var builder = CreateApkBuilder (Path.Combine (rootPath, proj.ProjectName))){
Assert.IsTrue (builder.Build (proj), "Build should have succeeded.");
}
Expand Down

0 comments on commit 151a91d

Please sign in to comment.