当我尝试构建我的项目时,我得到了下面的错误。任何帮助都将不胜感激。谢谢
我用的是-
org.openbakery:xcode-plugin:0.15.4.develop.+
gradle 5.3.1
Xcode 10.2
Build settings from command line:
CODE_SIGN_IDENTITY =
CODE_SIGNING_REQUIRED = NO
DSTROOT = /Users/milfar/build/client/build/dst
OBJROOT = /Users/milfar/build/client/build/obj
SHARED_PRECOMPS_DIR = /Users/milfar/build/client/build/shared
SYMROOT = /Users/milfar/build/client/build/sym
note: Using new build system
note: Planning build
note: Constructing build description
Build system information
error: An empty identity is not valid when signing a binary for the product type 'Application'. (in target 'RRiOSClient')
** BUILD FAILED **发布于 2019-04-09 22:46:34
我也犯了同样的错误。将additionalParameters = "CODE_SIGNING_ALLOWED=NO"添加到build.gradle中的xcodebuild步骤对我来说很有效。
https://stackoverflow.com/questions/55579222
复制相似问题