Phonegap 构建失败并出现启动画面

Phonegap build fails with splash screen

我正在尝试将新的 phonegap 构建与 CLI 7.0.1 结合使用

构建失败并出现此错误:

The following build commands failed:
    CompileAssetCatalog /Library/Developer/Xcode/DerivedData/Our_HNZC_Learning_space-ddfmniquktwfmabpvilymbvzreak/Build/Intermediates/ArchiveIntermediates/Our\ HNZC\ Learning\ space/InstallationBuildProductsLocation/Applications/Our\ HNZC\ Learning\ space.app Our\ HNZC\ Learning\ space/Images.xcassets
(1 failure)
Error code 65 for command: xcodebuild with args: -xcconfig,/private/project/cordova/build-release.xcconfig,-workspace,Our HNZC Learning space.xcworkspace,-scheme,Our HNZC Learning space,-configuration,Release,-destination,generic/platform=iOS,-archivePath,Our HNZC Learning space.xcarchive,archive,CONFIGURATION_BUILD_DIR=/private/project/build/device,SHARED_PRECOMPS_DIR=/private/project/build/sharedpch

我已将这些添加到 config.png

<icon src="res/icon.png" />
<splash src="res/splash.png" />

而且我添加了这个插件

<plugin name="cordova-plugin-splashscreen" />

并且文件位于正确的位置。

Splash 工作正常,图标导致错误

根据您提供的信息不确定确切的问题是什么。

起点是删除闪屏插件并重新添加它:

cordova plugin remove cordova-plugin-splashscreen
cordova plugin add cordova-plugin-splashscreen
cordova prepare

我建议使用像这样的图标和启动画面生成器:http://phonegap.appiq.software/

它会为您完成所有艰苦的工作,并为您提供 config.xml

的确切代码

希望对您有所帮助。