Xcode 10 Warning: Skipping code signing because the target does not have an Info.plist file

后端 未结 3 1787
礼貌的吻别
礼貌的吻别 2021-02-05 10:48

Getting following warnings for build in Xcode 10 GM version

Skipping code signing because the target does not have an Info.plist file. (in targe

3条回答
  •  隐瞒了意图╮
    2021-02-05 11:27

    In Xcode 10 : Comment following lines from the Podfile

    # Workaround for Cocoapods issue #7606
    #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
    

    It will solve the issue. Above lines we are using in Podfile due to "IBDesignable not works with the frameworks which links with CocoaPods"

    IBDesignable's issue is fixed in Xcode 10

    I have removed this lines and warning is gone away.

    Hope this will help you :)

提交回复
热议问题