为PhoneGap安装特定的插件版本

时间:2014-01-10 13:18:14

标签: cordova github phonegap-plugins

当我构建PhoneGap应用程序时,此插件的最新版本无效:

https://github.com/katzer/cordova-plugin-local-notifications

所以我想回到版本0.6.3,我知道它可以工作:

https://github.com/katzer/cordova-plugin-local-notifications/tree/v0.6.3

但是当我跑步时:

phonegap local plugin add https://github.com/katzer/cordova-plugin-local-notifications/tree/v0.6.3

我明白了:

[phonegap] adding the plugin: https://github.com/katzer/cordova-plugin-local-notifications/tree/dc894c1eeede69b935f19891fda8e45a6c4e8f2f
[error] Fetching plugin failed: Error: Command failed: fatal: https://github.com/katzer/cordova-plugin-local-notifications/tree/dc894c1eeede69b935f19891fda8e45a6c4e8f2f/info/refs?service=git-upload-pack not found: did you run git update-server-info on the server?

2 个答案:

答案 0 :(得分:3)

保持.git网址然后连接#VERSION。

在你的情况下:

phonegap local plugin add https://github.com/katzer/cordova-plugin-local-notifications.git#v0.6.3

答案 1 :(得分:0)

您可以将所需的版本下载到本地文件夹,然后在phonegap local plugin add来电中使用该本地文件夹的路径。