标签:解决办法 add min proc ffffff install height config during
错误如下:
Uninstalling cordova-plugin-alipay-v2 from ios
Error during processing of action! Attempting to revert...
Error: Uh oh!
Path must be a string. Received undefined
解决方案如下:
That last word should be ios
? If so, the ios
platform might need to be removed and re-added:
删除ios platform,并重新添加:
cordova platform rm ios
. // 调用cordova命令删除ios platform : cordova platform remove iosconfig.xml
file for a <plugin name="cordova-plugin-alipay-v2"> ...
line. Remove it if it‘s still there. //查找项目config.xml中是否包含待删除插件信息,如果有则删除之cordova platform add ios
. // 调用cordova命令重新添加ios platform: cordova platform add iosHopefully that cleans things out properly. //衷心希望能搞定该问题。
GOOD LUCK!
标签:解决办法 add min proc ffffff install height config during
原文地址:http://www.cnblogs.com/mythings/p/6489097.html