Skip to content

Commit 732d1be

Browse files
committed
Fix archive path
1 parent ee90228 commit 732d1be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Xamarin.Android.Build.Tasks/Tasks/GetNativeRuntimeComponents.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ void HackMakeArchiveItem (NativeRuntimeComponents.Archive archive, List<ITaskIte
178178
} else if (IsArchive ("libeventprovider.a")) {
179179
MakeRelativeArtifactPaths ((string clrArch) => Path.Combine (commonClrObjDir, $"android.{clrArch}.Release", "pal", "src", "eventprovider", "dummyprovider"));
180180
} else if (IsArchive ("libnativeresourcestring.a")) {
181-
MakeRelativeArtifactPaths ((string clrArch) => Path.Combine (commonClrObjDir, $"android.{clrArch}.Release", "pal", "nativeresources"));
181+
MakeRelativeArtifactPaths ((string clrArch) => Path.Combine (commonClrObjDir, $"android.{clrArch}.Release", "nativeresources"));
182182
} else {
183183
foreach (string abi in uniqueAbis) {
184184
string clrArch = GetClrArch (abi);

0 commit comments

Comments
 (0)