Required code signature missing for a library

前端 未结 10 927
眼角桃花
眼角桃花 2020-12-14 06:55

I am using Swift 3.0 in Xcode 8 and facing this error when running my app. I have used third party library SlideMenuController.

When I run my app I encounter this er

10条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-14 07:23

    The following command in the Podfile helped me:

    post_install do |installer|
        installer.pods_project.build_configurations.each do |config|
            config.build_settings.delete('CODE_SIGNING_ALLOWED')
            config.build_settings.delete('CODE_SIGNING_REQUIRED')
        end
    end
    

提交回复
热议问题