Quick answer: Make the certificate + profile + bundle ID trio agree: import the right certificate, generate a profile for the exact bundle ID including your devices, and set that bundle ID in project settings.

iOS signing is a three-way match, and UE reports any mismatch with this one message. Fixing means checking each leg of the triangle. Here they are.

How to fix it

1. Match the bundle identifier exactly

Project Settings > iOS > Bundle Identifier must equal the App ID in the provisioning profile — a com.studio.game vs com.studio.game-dev mismatch is invisible until you compare strings.

2. Import certificate with private key

The signing certificate must exist in this machine's keychain including the private key — a cert without its key (new machine, team sharing) signs nothing; export/import the .p12.

3. Regenerate stale profiles

Expired profiles, revoked certs, and new test devices all require regenerating the profile in the developer portal and re-importing into UE's project settings.

4. Let automatic signing help where possible

For simple setups, Xcode-managed signing (or UE's automatic mode where supported) removes the manual matching — teams with CI still typically pin manual profiles.

Catching the ones you can't reproduce

The hardest version of this to fix is the one you can't reproduce — it only happens on a player's hardware, OS, driver, or save state, under conditions that simply aren't present on your machine. A report that says “it crashed” or “it froze” gives you nothing to act on, so the bug survives release after release while quietly costing you players.

Automatic error capture closes that gap. Each failure arrives with its full stack trace, the device and OS, the build number, and a breadcrumb trail of what the player did right before it broke, so even a failure you have never seen becomes a specific, reproducible issue. Fold identical failures into one signature ranked by how many players each hits, and your worklist sorts itself worst-first instead of arriving as a stream of vague complaints.

This is where a tool like Bugnet earns its place. Its SDK captures every Unreal Engine error automatically with the full stack trace plus device, OS, memory, build, and game-state context, folds duplicates into one grouped issue with an occurrence count, and ties each to the build it first appeared on — so you fix the problem that hurts the most players first and confirm it is gone when its signature disappears from the next release.

A crash you can name from its stack trace is a crash you can usually fix in minutes.