尝试将应用程序部署到设备时收到此错误。我正在使用带有免费开发人员帐户的Xcode 10.1。在签名部分,我为个人团队设置了带有签名证书的iPhone Developer。我可以在iOS模拟器中运行该应用程序,但不能在真实设备中运行。
确切的错误消息:
CodeSign /Users/***/Library/Developer/Xcode/DerivedData/****-eqztbodhqkugrwevuvkmzysmcvdj/Build/Products/Debug-iphoneos/****\ Mobile.app (in target: ******)
cd /Users/***/Projects/**********/platforms/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
Signing Identity: "iPhone Developer:******@*****.com (QALD7Y5PCU)"
Provisioning Profile: "iOS Team Provisioning Profile: com.***.****"
(7475de4a-3ae3-4798-9c9c-a8e65a1bc1b9)
/usr/bin/codesign --force --sign 55DEB33A3DF3254D66B1AC6CEACB052CABCF3644 --entitlements /Users/***/Library/Developer/Xcode/DerivedData/************-eqztbodhqkugrwevuvkmzysmcvdj/Build/Intermediates.noindex/****\ Mobile.build/Debug-iphoneos/****\ Mobile.build/****\ Mobile.app.xcent --timestamp=none /Users/****/Library/Developer/Xcode/DerivedData/**********-eqztbodhqkugrwevuvkmzysmcvdj/Build/Products/Debug-iphoneos/****\ Mobile.app
/Users/****/Library/Developer/Xcode/DerivedData/********-eqztbodhqkugrwevuvkmzysmcvdj/Build/Products/Debug-iphoneos/**** Mobile.app: errSecInternalComponent
Command CodeSign failed with a nonzero exit code
答案 0 :(得分:1)
答案 1 :(得分:1)
我遇到了同样的问题,我的证书是自动创建的,但是Device Udid没有创建。 然后检查您的Apple开发者帐户中是否存在您的设备Udid,并检查您的捆绑包标识符?
//希望它能为您服务
答案 2 :(得分:1)
我也遇到了此错误,以我的经验,我试图在未在我的配置文件中注册的设备中运行我的应用程序。要解决此问题,您需要确保未使用生产配置文件,因为您无法在此处分配设备。使用开发配置文件,在该配置文件中分配设备,下载配置文件,然后双击它。重新构建,它应该可以工作。
答案 3 :(得分:0)
我今天遇到此错误,并通过以下步骤解决了该问题。
1从Asset文件夹中删除了新添加的图像。 2重新启动我的Mac计算机。 3重新启动了xCode,并进行了干净的构建。