MOBILE-2761 ionic: Update plugins to fix errors
parent
8ccd5a65ae
commit
46e5c9795a
|
@ -124,8 +124,6 @@
|
|||
<plugin name="cordova-plugin-zip" spec="^3.1.0" />
|
||||
<plugin name="cordova-plugin-local-notifications-mm" spec="^1.0.13" />
|
||||
<plugin name="cordova-plugin-file-opener2" spec="^2.0.19" />
|
||||
<plugin name="com-darryncampbell-cordova-plugin-intent" spec="^1.1.0" />
|
||||
<plugin name="cordova-sqlite-evcore-extbuild-free" spec="^0.9.7" />
|
||||
<plugin name="cordova-plugin-badge" spec="^0.8.7" />
|
||||
<plugin name="cordova-android-support-gradle-release" spec="^1.4.4">
|
||||
<variable name="ANDROID_SUPPORT_VERSION" value="27.1.0" />
|
||||
|
@ -134,6 +132,8 @@
|
|||
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|screenLayout|smallestScreenSize" android:debuggable="true" />
|
||||
</edit-config>
|
||||
<plugin name="cordova-plugin-screen-orientation" spec="^3.0.1" />
|
||||
<plugin name="com-darryncampbell-cordova-plugin-intent" spec="^1.1.1" />
|
||||
<plugin name="cordova-sqlite-evcore-extbuild-free" spec="^0.9.9" />
|
||||
<engine name="android" spec="7.0.0" />
|
||||
<engine name="ios" spec="4.5.4" />
|
||||
</widget>
|
||||
|
|
|
@ -1682,6 +1682,11 @@
|
|||
"integrity": "sha512-EDpX3a7wHMWFA7PUHWPHNWqOxIIRSJetuwl0AS5Oi/5FMV8kWm69RTlgm00GKjBO1xFHMtBbL49yRtMMdticBw==",
|
||||
"dev": true
|
||||
},
|
||||
"com-darryncampbell-cordova-plugin-intent": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/com-darryncampbell-cordova-plugin-intent/-/com-darryncampbell-cordova-plugin-intent-1.1.1.tgz",
|
||||
"integrity": "sha512-h+V54+qCFY1h5csX8lAKTxBn5DdbP/8/sm7vS6X0WZPI+OTKycxeoJC+oGtPHhlvTh4gSEVW5/MkDqANRcmaug=="
|
||||
},
|
||||
"combined-stream": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz",
|
||||
|
@ -2340,6 +2345,11 @@
|
|||
"resolved": "https://registry.npmjs.org/cordova-plugin-screen-orientation/-/cordova-plugin-screen-orientation-3.0.1.tgz",
|
||||
"integrity": "sha1-daNXzik4CB6PYdRgU5S213Rjwfg="
|
||||
},
|
||||
"cordova-sqlite-evcore-extbuild-free": {
|
||||
"version": "0.9.9",
|
||||
"resolved": "https://registry.npmjs.org/cordova-sqlite-evcore-extbuild-free/-/cordova-sqlite-evcore-extbuild-free-0.9.9.tgz",
|
||||
"integrity": "sha512-69U0JBhtBJd2QLNouaCuhfe2jv9HNClaPYRa+HcNmvdLqt/+DyIrpjBPtwYAsqNe9pxuR9oK1z/umuXw2IJSUw=="
|
||||
},
|
||||
"core-js": {
|
||||
"version": "2.3.0",
|
||||
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.3.0.tgz",
|
||||
|
|
|
@ -78,9 +78,11 @@
|
|||
"@types/node": "^8.0.47",
|
||||
"@types/promise.prototype.finally": "^2.0.2",
|
||||
"chart.js": "^2.7.2",
|
||||
"com-darryncampbell-cordova-plugin-intent": "^1.1.1",
|
||||
"cordova-android": "7.0.0",
|
||||
"cordova-ios": "4.5.4",
|
||||
"cordova-plugin-screen-orientation": "^3.0.1",
|
||||
"cordova-sqlite-evcore-extbuild-free": "^0.9.9",
|
||||
"es6-promise-plugin": "^4.2.2",
|
||||
"font-awesome": "4.7.0",
|
||||
"ionic-angular": "^3.9.2",
|
||||
|
@ -121,7 +123,9 @@
|
|||
"ios"
|
||||
],
|
||||
"plugins": {
|
||||
"cordova-plugin-screen-orientation": {}
|
||||
"cordova-plugin-screen-orientation": {},
|
||||
"com-darryncampbell-cordova-plugin-intent": {},
|
||||
"cordova-sqlite-evcore-extbuild-free": {}
|
||||
}
|
||||
},
|
||||
"main": "desktop/electron.js",
|
||||
|
|
Loading…
Reference in New Issue