2017-05-16 111 views
0

我使用visual studio内置的插件安装程序在config.xml中安装名为“pushbots”的插件,但我不再需要它,所以我试图将其删除。 它说“安装过程中出错”,并且构建失败,出现167个错误。 enter image description hereVisual studio无法卸载Apache Cordova插件

从安装日志:

Error: Uh oh! 
ENOENT, no such file or directory 'D:\[project folder]\platforms\android\pushbots-cordova-plugin' 

生成错误:

Severity Code Description Project File Line Suppression State 
Error  import com.pushbots.push.Pushbots; OIU  1 

Severity Code Description Project File Line Suppression State 
Error  D:\ 
[project]\platforms\android\src\com\pushbots\plugin\PushbotsPlugin.java:4: 
error: package com.pushbots.push does not exist OIU  1 

我不需要让插件工作,我只需要摆脱生成错误的。这是我的第一个Apache Cordova应用程序,我不知道该怎么做。

+1

你也试过命令行吗? –

+0

您是否在新的空白空Cordova应用程序上尝试过它? –

回答

0

使用了一个应用程序cordova-check-plugins,它允许删除所有插件。 来源:here

相关问题