试图解决此错误,将从start.gluon.io生成的小示例应用程序部署到运行iOS 15.2的附加iPad (从macOS 10.15.7 )
[Mon Dec 27 20:17:53 GMT 2021][INFO] [SUB] [ 52%] CreatingStagingDirectory
[Mon Dec 27 20:17:53 GMT 2021][INFO] [SUB] [ 57%] ExtractingPackage
[Mon Dec 27 20:17:53 GMT 2021][INFO] [SUB] [ 60%] InspectingPackage
[Mon Dec 27 20:17:53 GMT 2021][INFO] [SUB] [ 60%] TakingInstallLock
[Mon Dec 27 20:17:53 GMT 2021][INFO] [SUB] [ 65%] PreflightingApplication
[Mon Dec 27 20:17:53 GMT 2021][INFO] [SUB] [ 65%] InstallingEmbeddedProfile
[Mon Dec 27 20:17:53 GMT 2021][INFO] [SUB] [ 70%] VerifyingApplication
[Mon Dec 27 20:17:53 GMT 2021][INFO] [SUB] 2021-12-27 20:17:53.522 ios-deploy[4411:85868] [ !! ] Error 0xe8008029: unknown. AMDeviceSecureInstallApplication(0, device, url, options, install_callback, 0)虚拟Xcode应用程序被签名并部署到附加的iPad ok上,尽管必须为Xcode 12的签名配置指定一个额外的-生成-授权-der。
我正在按照https://docs.gluonhq.com/#_build_your_application118的指示办事。Plist为包id编辑,使用我的apple developer帐户提供配置文件,并命中上述错误。Docs说在GluonFX插件中添加true是有帮助的,所以我已经添加到了plugin伪制品和rerun ./mvnw gluonfx:link和nativerun中,而且似乎都没有记录任何其他消息。
请想一想从哪里出发,或者让构建更加冗长,以检查它是否获得了正确的配置文件,或者在.app被复制到iPad之后如何通过验证?
发布于 2021-12-28 11:17:24
问题与运行Xcode 12.4并试图部署到iOS 15设备有关。在较新的macOS版本上可用的较晚版本的Xcode可能不会遇到这种情况。苹果已经按照The code signature version is no longer supported添加了一些证书要求。
通过遵循JoséPereda在评论中的建议,能够签署和部署,即克隆胶子底物回购和添加-生成-权利-der到codesign呼叫。
https://stackoverflow.com/questions/70500222
复制相似问题