Phonegap构建失败,启动画面

时间:2017-11-15 01:24:15

标签: ios cordova phonegap-build

我正在尝试使用CLI 7.0.1的新phonegap构建

构建因此错误而失败:

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工作正常,Icon导致错误

1 个答案:

答案 0 :(得分:0)

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

一个起点是删除splashscreen插件并重新添加:

app.post("/palabra", function(req, res) {
    var det = req.body.letra;
    var spl = det.split('');

    for (var i = 0; i < spl.length ; i++) {

        Lesho.find({"letra": spl[i]
        }, function(error, documento) {
            if (error) {
                console.log(error);
                res.redirect("loadImg");
            };

        res.render("palabra",{traduccion:documento})  

        });        
    }   
});

我建议使用Icon和Splashscreen生成器,例如:http://phonegap.appiq.software/

它为您完成了所有艰苦的工作,并为您提供了config.xml的确切代码

我希望这有用。