我使用Plugman安装了这样的插件:
plugman install --platform iOS --project / Users / User / Documents / Projects / MyProject --plugin https://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen.git
和Plugman说安装成功了。
然而,在构建项目时,xCode输出显示:
CDVPlugin类CDVSplashScreen(pluginName:启动画面)没有 存在。
[CDVTimer] [splashscreen] 1.785994ms
CDVPlugin类CDVSplashScreen(pluginName:SplashScreen)没有 存在。
错误:找不到插件'SplashScreen',或者不是CDVPlugin。校验 您在config.xml中的插件映射。
第二个错误可能是因为我试图用javascript调用Splashscreen插件,但我的项目中有两个位置的SplashScreen文件:
MyProject的/科尔多瓦/插件/ org.apache.cordova.core.splashscreen /
和
MyProject的/ MyProject.xcode /插件/ org.apache.cordova.core.splashscreen / CDVSplashScreen.h MyProject的/ MyProject.xcode /插件/ org.apache.cordova.core.splashscreen / CDVSplashScreen.m
因此,MyProject看起来像这样:如果没有相同的问题,我无法安装任何其他插件。有没有人有任何想法?
我正在使用没有CLI的Phonegap 3.0(从Phonegap 2.4升级)
答案 0 :(得分:13)
在xcode中,我导航到MyProject / MyProject / Plugins
找到了
就在根目录中。所以我选择删除(只有引用),重新添加了文件系统中的SplashScreen文件夹。
现在该文件夹如下所示:
现在SplashScreen有效!