Home > Net >  ERROR ITMS-90165: "Invalid Provisioning Profile Signature."
ERROR ITMS-90165: "Invalid Provisioning Profile Signature."

Time:04-13

ERROR ITMS-90165: "Invalid Provisioning Profile Signature. The provisioning profile included in the bundle 'com.xxxx.xxxx.qa' (Payload/Runner.app) 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."

I got this error, when I was trying to add my app for review. How can I handle with this? Everything was okay till yesterday

CodePudding user response:

A quote from James Ide (Expo):

Two Apple certificates used to sign your provisioning profiles expired today. When you try to submit your app for review you'll get an ITMS-90165 error. Fix is to get a new provisioning profile.

The provisioning profile is signed by a chain of three certificates. openssl pkcs7 -print_certs -text -in embedded.mobileprovision -inform der These are different from your code signing certificate. The root CA in the chain is fine but the two children expired April 12, 2022.

See: https://twitter.com/JI/status/1514043544897425408

CodePudding user response:

For me in my case

what i did is i go to my Xcode

  • Preferences
  • Accounts Select your App ID's
  • then what i did is clicking manage certicicate
  • then a dialog will show so next click plus button
  • then click Apple Distribution then Done

i tried to upload again and i work for me for some reason as i follow above deleting or remove provisioning profile i quite regret it and i created new one but what done is done so as long as it work.

  • Related