Skip to content

Commit

Permalink
ff
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Jul 23, 2021
1 parent 8e51ac6 commit c1c9da9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3965,7 +3965,7 @@ public void KotlinServiceLoader ([Values ("apk", "aab")] string packageFormat)
using (var b = CreateApkBuilder ()) {
Assert.IsTrue (b.Build (proj), "build should have succeeded.");
var archive = Path.Combine (Root, b.ProjectDirectory,
proj.IntermediateOutputPath, "android", "bin", $"{proj.PackageName}.{packageFormat}");
proj.OutputPath, $"{proj.PackageName}.{packageFormat}");
var prefix = packageFormat == "apk" ? "" : "base/root/";
var expectedFiles = new [] {
prefix + "META-INF/maven/com.google.code.gson/gson/pom.xml",
Expand Down
2 changes: 1 addition & 1 deletion tests/MSBuildDeviceIntegration/Tests/InstantRunTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public void InstantRunFastDevTypemaps ([Values ("dx", "d8")] string dexTool)
using (var b = CreateApkBuilder (Path.Combine ("temp", TestName))) {
Assert.IsTrue (b.Install (proj), "packaging should have succeeded. 0");
var apk = Path.Combine (Root, b.ProjectDirectory,
proj.IntermediateOutputPath, "android", "bin", $"{proj.PackageName}.apk");
proj.OutputPath, $"{proj.PackageName}-Signed.apk");
Assert.IsNull (ZipHelper.ReadFileFromZip (apk, "Mono.Android.typemap"), $"Mono.Android.typemap should NOT be in {apk}.");
var logLines = b.LastBuildOutput;
Assert.IsTrue (logLines.Any (l => l.Contains ("Building target \"_BuildApkFastDev\" completely.") ||
Expand Down

0 comments on commit c1c9da9

Please sign in to comment.