1

每当我尝试构建到设备时,我都会收到此错误:

错误 Domain=IDEProvisioningErrorDomain Code=8 “binding.node 有冲突的配置设置。” UserInfo={NSLocalizedDescription=binding.node 有冲突的配置设置。,NSLocalizedRecoverySuggestion=binding.node 会自动签名以进行分发,但是已经手动指定了冲突的代码签名身份 iPhone 开发人员。从导出选项属性列表中删除“signingCertificate”条目,或通过将“signingStyle”设置为“Manual”切换到手动签名。}

我可以很好地构建模拟器。这会是什么?

我的.xconfig:

// You can add custom settings here
// for example you can uncomment the following line to force 
distribution code signing
CODE_SIGN_IDENTITY = iPhone Distribution
// To build for device with XCode 8 you need to specify your 
development team.
DEVELOPMENT_TEAM = <xxxxxxxx>;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
TARGETED_DEVICE_FAMILY = 1,2;
4

1 回答 1

0

正如我已经在Github 问题中回答的那样,很可能您有一个无法在 package.json 的依赖项列表中签名的开发依赖项,您需要按照此线程中描述的步骤来解决它。

于 2019-02-18T09:26:37.423 回答