Joe
Joe

Reputation: 500

Codemagic issue with provisioning profile

When building iOS project on Codemagic I get the following error:

Completed configuring code signing settings
    Did not find matching provisioning profiles for code signing!
    Generated options for exporting the project
     - Method: ad-hoc
     - Provisioning Profiles: []
     - Signing Certificate: 
     - Signing Style: manual
     - Team Id:

Encountered error while building IPA:
error: Couldn't load -exportOptionsPlist: Failed to decode "provisioningProfiles". Expected to decode Dictionary<String, Any> but found an array instead.

Any solution?

codemagic.yaml

Upvotes: 1

Views: 2187

Answers (1)

Mikhail Tokarev
Mikhail Tokarev

Reputation: 3276

release-pipeline workflow you shared doesn't have the following mandatory steps to publish to App Store:

  • code signing configuration
  • building .ipa

Looks like it was configured for Google Play only.

Check this example https://docs.codemagic.io/yaml-quick-start/building-a-flutter-app/#ios-builds

Upvotes: 1

Related Questions