ios ITMS-90034: Missing or invalid signature error when adding sentry postPublish hook

I am adding sentry postPublish hook to app.json as described:

{
  "expo": {
    // ... your existing configuration
    "hooks": {
      "postPublish": [
        {
          "file": "sentry-expo/upload-sourcemaps",
          "config": {
            "organization": "your sentry organization's short name here",
            "project": "your sentry project's name here",
            "authToken": "your auth token here"
          }
        }
      ]
    }
  }
}

Than I am running expo build:ios . The build and publish are finished successfully. Than I am delivering the ipa file via the Transporter. The delivery finished successfully too. But than after a while I am getting the following email:

ITMS-90034: Missing or invalid signature - The bundle 'my-bundle' at bundle path 'Payload/ExpoKitApp.app' is not signed using an Apple submission certificate.

This is only happened when I am adding the hook.

Hey @elad_blind, what SDK version is your project running? Also what version of Transporter are you running?

Cheers,
Adam

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.