Reputation: 16114
I am trying to upload an archive to App Store Connect, and suddenly am getting the following error:
Invalid Provisioning Profile Signature. The provisioning profile included in the bundle cannot be used to submit apps to the iOS App Store until it has a valid signature from Apple. For more information, visit the iOS Developer Portal. With error code STATE_ERROR.VALIDATION_ERROR.90165 for id ...
I am using "Automatically manage signing" and have uploaded an archive just yesterday for the same app with no issue.
Upvotes: 87
Views: 17440
Reputation: 7
> [Getting this error on uploading app on Test Flight. DOn't worry Just follow these steps]
> [1] Go to Xcode preference
> [2] Open Accounts tab
> [3] Click on manage Certificates
> [4] At bottom 'Apple Distribution Certificates' ,there is your expire certificate. Just delete it and try to upload again
>
> App upload to Test Flight successfully.
>
>
> [1]: https://i.sstatic.net/Pjxkg.png
Upvotes: -1
Reputation: 1857
For those using fastlane, adding force: true to your get_provisioning_profile call will reset the expiration date.
get_provisioning_profile( # Create or get provisioning profile
output_path: "./builds", # change to whatever works for you
force: true,
filename: "AppStore_" + ENV["APP_IDENTIFIER"] + ".mobileprovision" # Rename the local provisioning profile
)
See: https://docs.fastlane.tools/actions/get_provisioning_profile/
Upvotes: 0
Reputation: 554
Regenerate the Provisioning Profile, you can keep the same certificates.
Resolve with following steps
Regenerate Provisioning Profiles Go to developer.apple.com => Certificates, Identifiers & Profiles => Profiles => click on the profile => Click on EDIT => SAVE again (to ensure it regenerates the Provisioning Profile)
Delete locally saved Provisioning file:
rm -rf ~/Library/MobileDevice/Provisioning\ Profiles
Then in Xcode accounts, download Profiles again. either from Xcode => Preferences => Accounts or Runner => Targets => Signing & Capabilities => Prov Profile => Download profiles.
Upvotes: 3
Reputation: 2531
Apple has updated its WWDR certificates https://developer.apple.com/support/expiration/ Some certificates expired in January and some in April of 2022 depending on what version of xCode you had. With that being said, any provisioning profile downloaded before April of 2022 was signed with a now expired WWDR. That's why you'd need to regenerate your provisioning profiles.
Upvotes: 7
Reputation: 1958
Solution:-
Upvotes: 1
Reputation: 49
This is what worked for me.
Upvotes: 4
Reputation: 2853
The issue was caused by two expired Apple certificates1.
Solution is to
Edit
in the top rightSave
without making any changes
This will regenerate the profile with the correct CAs.Now delete the ~/Library/MobileDevice/Provisioning Profiles
folder and let xcode redownload the profiles again.
1 https://twitter.com/JI/status/1514043544897425408
Upvotes: 87
Reputation: 2338
For me helps:
rm -rf ~/Library/MobileDevice/Provisioning\ Profiles/
Upvotes: 23
Reputation: 670
Not everyone's certificate can expire at the same time. This may have something to do with apple.
1- Delete All profiles file.
/Users/X/Library/MobileDevice/Provisioning Profiles
2- Open Xcode and wait 2 second. Xcode can download profiles automatic. You don't need to do anything.
Note that you don't have an expired certificate before that. If there is an expired one, edit it and save it again. will give you a new date.
Upvotes: 5
Reputation: 49
I had been deploying till yesterday. The builds worked fine, all of a sudden today, I started running into this issue as well. Nothing else worked for me. The following steps resolved the issue for me:
Upvotes: 4
Reputation: 21
For me, It got resolved when I created the AppStore provisioning profile again and deleted the old one.
Upvotes: 2