Skip to content
This repository has been archived by the owner on Jun 13, 2019. It is now read-only.

When using cocoapod "Failed to verify code signature" #33

Open
jdboivin opened this issue Jun 9, 2016 · 1 comment
Open

When using cocoapod "Failed to verify code signature" #33

jdboivin opened this issue Jun 9, 2016 · 1 comment

Comments

@jdboivin
Copy link

jdboivin commented Jun 9, 2016

This is when building app for "In House" and using cocoapod

Failed to verify code signature of /private/var/installd/Library/Caches/com.apple.mobile.installd.staging/....../Frameworks/CameraEngine.framework

I'm not too familiar with cocoapod but it seems like the info.plist file is the culprit? When exporting the .ipa file, CameraEngine had a "binary" / "executable" icon instead of the framework icon from usual pods.

@ltebean
Copy link

ltebean commented Jul 22, 2016

Add this block into your pod file:

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
            config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
            config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
        end
    end
end

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants