Xcode 10警告:因为目标没有Info.plist文件,所以正在跳过代码签名 [英] Xcode 10 Warning: Skipping code signing because the target does not have an Info.plist file

查看:219
本文介绍了Xcode 10警告:因为目标没有Info.plist文件,所以正在跳过代码签名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Xcode 10 GM版本中获得以下警告

Getting following warnings for build in Xcode 10 GM version

正在跳过代码签名,因为目标没有Info.plist文件. (在目标"FirebaseCore"中)

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

正在跳过代码签名,因为目标没有Info.plist文件. (在目标"FirebaseCore"中)

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

如何消除这些警告?

推荐答案

在Xcode 10中:注释Podfile中的以下行

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

它将解决问题.由于"IBDesignable不适用于与CocoaPods链接的框架",因此我们在Podfile中使用的上述行

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的问题已在Xcode 10中修复

IBDesignable's issue is fixed in Xcode 10

我已经删除了这行内容,警告也消失了.

I have removed this lines and warning is gone away.

希望这会对您有所帮助:)

Hope this will help you :)

这篇关于Xcode 10警告:因为目标没有Info.plist文件,所以正在跳过代码签名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆