How to run an iOS app that causes runtime error for frameworks “code signature invalid”

This is an issue with iOS 13.3.1. All dynamic frameworks being compiled to the newest release of iOS 13.3.1 are experiencing this issue when run on a personal provisioning profile/developer account. The solution, copied from jmagman from Github, is below. You can: Use a non-Personal Team provisioning profile (paid developer account). Run on the 13.3.1 … Read more

“No unexpired provisioning profiles found that contain any of the keychain’s signing certificates” Horror

iOS distribution is such a pain in the ass! This worked for me (follow the steps in this order): 1) in the xcode organizer: delete all provisioning profiles 2) in the mac os x keychain: delete all iOS dev certificates 3) go to developer.apple.com log in to the member center revoke all certificates (edit: some … Read more

How to install developer certificate/private key and provisioning profile for iOS development via command line?

The always allow GUI is being triggered because codesign hasn’t been given an acl to access your private key. try this: security unlock-keychain -p <my keychain password> security import Certificate.p12 -k ~/Library/Keychains/login.keychain -P password -T /usr/bin/codesign The -T flag tells security to allow codesign to have access to the keys you are importing in Certificate.p12.