iOS plugins + Remove debug alerts

This commit is contained in:
Ghislain Loaec 2015-02-06 17:09:22 +01:00
parent c8740cdf7a
commit b395f2c7b3
2 changed files with 78 additions and 1 deletions

78
plugins/ios.json Normal file
View File

@ -0,0 +1,78 @@
{
"prepare_queue": {
"installed": [],
"uninstalled": []
},
"config_munge": {
"files": {
"framework": {
"parents": {
"CoreGraphics.framework": [
{
"xml": "false",
"count": 1
}
],
"AssetsLibrary.framework": [
{
"xml": "false",
"count": 2
}
],
"MobileCoreServices.framework": [
{
"xml": "false",
"count": 1
}
],
"libz.dylib": [
{
"xml": "false",
"count": 1
}
]
}
},
"config.xml": {
"parents": {
"/*": [
{
"xml": "<feature name=\"InAppBrowser\"><param name=\"ios-package\" value=\"CDVInAppBrowser\" /></feature>",
"count": 1
},
{
"xml": "<feature name=\"File\"><param name=\"ios-package\" value=\"CDVFile\" /><param name=\"onload\" value=\"true\" /></feature>",
"count": 1
},
{
"xml": "<feature name=\"FileTransfer\"><param name=\"ios-package\" value=\"CDVFileTransfer\" /></feature>",
"count": 1
}
],
"/widget": [
{
"xml": "<feature name=\"Zip\"><param name=\"ios-package\" value=\"Zip\" /></feature>",
"count": 1
}
]
}
}
}
},
"installed_plugins": {
"org.apache.cordova.inappbrowser": {
"PACKAGE_NAME": "com.cadoles.momo"
},
"org.chromium.zip": {
"PACKAGE_NAME": "com.cadoles.momo"
},
"org.apache.cordova.file-transfer": {
"PACKAGE_NAME": "com.cadoles.momo"
}
},
"dependent_plugins": {
"org.apache.cordova.file": {
"PACKAGE_NAME": "com.cadoles.momo"
}
}
}

View File

@ -143,7 +143,6 @@ var app = {
function(entry) {
// Unzip Assets
zip.unzip(filePath, rootPath, function(){
alert('download & unzip successful '+filePath);
app.start(data);
});
},