Ios flutter app code signing issue #1932
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduceI was trying to build ios flutter app. I have code signing enabled ( with app store integration) but I always got an error during the signing step. Expected resultssuccessful code signing Actual resultsFound 3 Signing Certificates matching specified filters: certificateType=IOS_DISTRIBUTION,DISTRIBUTION. Build id (optional)No response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The solution : login to your apple developer account and navigate to this link https://developer.apple.com/account/resources/certificates/list |
Beta Was this translation helpful? Give feedback.
The solution : login to your apple developer account and navigate to this link https://developer.apple.com/account/resources/certificates/list
here you should find your available certificates.
For my app Codemagic actually creates a certificate with type distribution for each codemagic applicaiton I have.
I already had 3 applications (2 were unused) and I just created a new app and I was trying to sign it.
Codemagic already created 3 certificates with type "Distribution" for my other apps, so when I tried to create one now it gave this error.
The reason is that you are only allowed 3 certificates from the same type. (Distribution in this case)
so I deleted the certificates of my unsued ap…