We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65ad026 commit 602f9a8Copy full SHA for 602f9a8
src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/BuildTest2.cs
@@ -1052,8 +1052,8 @@ public void BuildAfterMultiDexIsNotRequired ()
1052
}
1053
1054
//Now build project again after it no longer requires multidex, remove the *HUGE* AndroidJavaSource build items
1055
- while (proj.OtherBuildItems.Count > 1)
1056
- proj.OtherBuildItems.RemoveAt (proj.OtherBuildItems.Count - 1);
+ while (proj.AndroidJavaSources.Count > 1)
+ proj.AndroidJavaSources.RemoveAt (proj.AndroidJavaSources.Count - 1);
1057
proj.SetProperty ("AndroidEnableMultiDex", "False");
1058
1059
Assert.IsTrue (b.Build (proj, doNotCleanupOnUpdate: true), "Build should have succeeded.");
0 commit comments