Phonegap Build Error“插件不受支持:splashscreen”

时间:2013-07-18 04:55:54

标签: android ios cordova phonegap-plugins phonegap-build

我正在使用PhonegapBuild而不是eclipse来构建我的应用程序。

我们没有使用任何自定义插件。我读了关于插件的帖子,但我认为这是自定义插件,所以我没有改变XML中的任何内容,它给我错误“plugin unsupported: splashscreen”所以任何人都可以帮助我摆脱它。

在Config.xml中,splash插件行与文档中提到的相同,如下所示

对于Android:

<gap:plugin name="SplashScreen" value="org.apache.cordova.SplashScreen"/>

对于IOS:

<gap:plugin name="SplashScreen" value="CDVSplashScreen" />

请帮帮我..

屏幕截图位于

之下

enter image description here

2 个答案:

答案 0 :(得分:0)

我也从我的config.xml for Android以及IOS中删除了所有插件。然后我成功上传了我的Zip文件以进行构建及其在设备中的构建和工作......

答案 1 :(得分:0)

据我所知,你必须与feauture和插件混淆 尝试使用以下功能

<feature name="SplashScreen">
  <param name="android-package" value="org.apache.cordova.SplashScreen"/>
</feature>
<feature name="SplashScreen">
    <param name="ios-package" value="CDVSplashScreen" />
</feature>

尝试使用以下插件

<gap:plugin name="cordova-plugin-splashscreen" source="npm" version="2.1.0" />

但我的启动画面也有a problem,所以它可能不是100%正确。我的问题是我的图像没有被识别。