Asset Validation Failed (90034) Missing or Invalid signature #12235
Unanswered
williambuchanan2
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all
I am trying to upload my Maui app to the Apple App Store from Azure Devops and running into a multitude of problems.
Currently I am getting this error:
Asset Validation Failed (90034) Missing or Invalid signature
I have create what I believe is all the required certs and provisioning profile so not really sure what I am missing. Here is what I have in my csproj file:
I have the p12 file and the provisioning profile file in the Devops library, and bring them in to the build like this:
task: InstallAppleCertificate@2
displayName: 'Install Apple Certificate'
inputs:
certSecureFile: '$(appStoreCert)'
certPwd: '$(CERTIFICATEPW)'
keychain: 'temp'
task: InstallAppleProvisioningProfile@1
displayName: 'Install Apple Provisioning Profile'
inputs:
provisioningProfileLocation: 'secureFiles'
provProfileSecureFile: '$(provFile)'
It just fails in Devops with no error messages, but on my mac I am using altool to verify the ipa file and it shows the error above as being the problem. Any thoughts?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions