首次执行 cordova插件添加后,在plugins文件夹中创建文件 fetch.json 。每次添加/删除插件时,此文件也会被修改。
fetch.json的内容:
{
"com.phonegap.plugins.PushPlugin": {
"source": {
"type": "git",
"url": "https://github.com/phonegap-build/PushPlugin.git",
"subdir": "."
},
"is_top_level": true,
"variables": {}
},
"cordova-plugin-file": {
"source": {
"type": "registry",
"id": "cordova-plugin-file"
},
"is_top_level": true,
"variables": {}
}
}
答案 0 :(得分:7)
看起来这个文件跟踪已安装的插件,它们的来源和修订版,比如npm package.json依赖项,但对于plugman。我想并希望这很快就会转移到npm标准。
此文件在cordova添加/删除插件(https://github.com/apache/cordova-lib/blob/e4e5904619bab05705d62bce92a4c4cd0d45bb82/cordova-lib/src/cordova/plugin.js#L272)
上更新当我们cordova prepare
时,cordova从plugins/ios.json
(对于ios)读取插件列表,然后为每个插件列表:
plugins/fetch.json
看起来无法使用此文件恢复插件。我的工作流程是:
cordova platform add xxx
这将重新获取config.xml
看起来唯一的文档是源代码:https://github.com/apache/cordova-lib/search?utf8=%E2%9C%93&q=fetch