update cordova-ios in test app template

This commit is contained in:
Sefa Ilkimen
2019-11-10 17:05:52 +01:00
parent 3b4a5b7c26
commit b3276ad2d4
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
</platform>
<engine name="android" spec="7.1.0" />
<engine name="browser" spec="5.0.0" />
<engine name="ios" spec="4.4.0" />
<engine name="ios" spec="5.0.1" />
<plugin name="cordova-plugin-file" spec="6.0.1" />
<preference name="AndroidPersistentFileLocation" value="Internal" />
</widget>
+1 -1
View File
@@ -14,7 +14,7 @@
"cordova": "7.0.1",
"cordova-android": "7.1.0",
"cordova-browser": "5.0.0",
"cordova-ios": "4.4.0"
"cordova-ios": "5.0.1"
},
"cordova": {
"platforms": [
+1 -1
View File
@@ -9,7 +9,7 @@ module.exports = function init(FormData, console, messages) {
function logWarnings() {
if (!FormData) {
console.warn(messages.MISSING_FORMDATA_API);
} else if (!FormData.prototype || !FormData.prototype.entries) {
} else if (!FormData.prototype || !FormData.prototype.entries) {
console.warn(messages.MISSING_FORMDATA_ENTRIES_API);
}
}