Clean plugin registry

This commit is contained in:
Ghislain Loaec 2015-08-14 00:15:14 +02:00
parent fa7caeed8d
commit ece1ef9124
2 changed files with 27 additions and 1 deletions

View File

@ -32,7 +32,7 @@ If plugin registry server seems to be down :'( use git instead ;)
phonegap plugin add https://github.com/apache/cordova-plugin-file.git
phonegap plugin add https://github.com/apache/cordova-plugin-file-transfer.git
phonegap plugin add https://github.com/apache/cordova-plugin-zip.git
phonegap plugin add https://github.com/MobileChromeApps/cordova-plugin-zip.git
phonegap plugin add https://github.com/apache/cordova-plugin-whitelist.git
phonegap plugin add https://github.com/apache/cordova-plugin-inappbrowser.git # optional

View File

@ -5,6 +5,16 @@
},
"config_munge": {
"files": {
"config.xml": {
"parents": {
"/*": [
{
"xml": "<preference name=\"AndroidPersistentFileLocation\" value=\"Internal\" />",
"count": 1
}
]
}
},
"res/xml/config.xml": {
"parents": {
"/*": [
@ -19,6 +29,16 @@
{
"xml": "<feature name=\"InAppBrowser\"><param name=\"android-package\" value=\"org.apache.cordova.inappbrowser.InAppBrowser\" /></feature>",
"count": 1
},
{
"xml": "<feature name=\"Whitelist\"><param name=\"android-package\" value=\"org.apache.cordova.whitelist.WhitelistPlugin\" /><param name=\"onload\" value=\"true\" /></feature>",
"count": 1
}
],
"/widget": [
{
"xml": "<feature name=\"Zip\"><param name=\"android-package\" value=\"org.apache.cordova.Zip\" /></feature>",
"count": 1
}
]
}
@ -44,6 +64,12 @@
},
"cordova-plugin-inappbrowser": {
"PACKAGE_NAME": "com.cadoles.momo"
},
"cordova-plugin-whitelist": {
"PACKAGE_NAME": "com.cadoles.momo"
},
"cordova-plugin-zip": {
"PACKAGE_NAME": "com.cadoles.momo"
}
},
"dependent_plugins": {}