iOS Remote Build Failure - "Provision Not Found" (MarketplaceRules.dll Path Discrepancy)

Hello,

After upgrading our project from 5.4.4 to 5.5.4 remote building for iOS from Windows stopped working. I’ve reported this issue to Epic but thought I’d share my findings and workaround here as well for others that might run into the issue.

We got the following error:

UATHelper: Packaging (IOS):   Total execution time: 0.99 seconds

UATHelper: Packaging (IOS):   Precompiled rules assembly '/Users/<user>/Documents/Library/Application Support/Epic/UnrealEngine/Intermediate/Build/BuildRules/MarketplaceRules.dll' does not exist.

UATHelper: Packaging (IOS): [Remote] Downloading C:\Users\<user>\AppData\Roaming\Unreal Engine\AutomationTool\Logs\C+Program+Files+Epic+Games+UE_5.5\UBA-<Project>-IOS-Development_Remote.txt

UATHelper: Packaging (IOS): Total execution time: 33.17 seconds

UATHelper: Packaging (IOS): Took 33,28s to run dotnet.exe, ExitCode=11

UATHelper: Packaging (IOS): UnrealBuildTool failed. See log for more details. (C:\Users\<user>\AppData\Roaming\Unreal Engine\AutomationTool\Logs\C+Program+Files+Epic+Games+UE_5.5\UBA-<Project>-IOS-Development.txt)

UATHelper: Packaging (IOS): AutomationTool executed for 0h 0m 35s

UATHelper: Packaging (IOS): AutomationTool exiting with ExitCode=11 (Error_ProvisionNotFound)

UATHelper: Packaging (IOS): BUILD FAILED

LogStreaming: Display: FlushAsyncLoading(1119): 1 QueuedPackages, 0 AsyncPackages

PackagingResults: Error: Provision Not Found 

It seems like UBT incorrectly reports a “Provision Not Found” error when it’s not able to find certain DLL files. In this case MarketplaceRules.dll. The file is correctly copied over during the rsync to but UBT is looking for it in the wrong place.

As a workaround you can create a symbolic link on the Mac:

mkdir -p "/Users/<user>/Documents/Library/Application Support/Epic/UnrealEngine/Intermediate/Build"
ln -s "/Users/<user>/Library/Application Support/Epic/UnrealEngine/Intermediate/Build/BuildRules" "/Users/user>/Documents/Library/Application Support/Epic/UnrealEngine/Intermediate/Build/BuildRules"