MOBILE-2431 config: Include badge plugin in config.xml
parent
eaf93d4fac
commit
8b8721a7f6
|
@ -35,6 +35,7 @@
|
||||||
<preference name="SplashScreen" value="screen" />
|
<preference name="SplashScreen" value="screen" />
|
||||||
<preference name="SplashScreenDelay" value="15000" />
|
<preference name="SplashScreenDelay" value="15000" />
|
||||||
<preference name="SplashMaintainAspectRatio" value="true" />
|
<preference name="SplashMaintainAspectRatio" value="true" />
|
||||||
|
<preference name="LoadUrlTimeoutValue" value="60000" />
|
||||||
<feature name="StatusBar">
|
<feature name="StatusBar">
|
||||||
<param name="ios-package" onload="true" value="CDVStatusBar" />
|
<param name="ios-package" onload="true" value="CDVStatusBar" />
|
||||||
</feature>
|
</feature>
|
||||||
|
@ -90,8 +91,6 @@
|
||||||
<splash height="960" src="resources/ios/splash/Default@2x~iphone.png" width="640" />
|
<splash height="960" src="resources/ios/splash/Default@2x~iphone.png" width="640" />
|
||||||
<splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" />
|
<splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" />
|
||||||
</platform>
|
</platform>
|
||||||
<engine name="android" spec="6.1.2" />
|
|
||||||
<engine name="ios" spec="4.3.1" />
|
|
||||||
<plugin name="cordova-plugin-file" spec="4.3.3" />
|
<plugin name="cordova-plugin-file" spec="4.3.3" />
|
||||||
<plugin name="cordova-plugin-file-transfer" spec="1.6.3" />
|
<plugin name="cordova-plugin-file-transfer" spec="1.6.3" />
|
||||||
<plugin name="cordova-plugin-camera" spec="2.4.1">
|
<plugin name="cordova-plugin-camera" spec="2.4.1">
|
||||||
|
@ -124,4 +123,7 @@
|
||||||
<plugin name="cordova-plugin-file-opener2" spec="~2.0.19" />
|
<plugin name="cordova-plugin-file-opener2" spec="~2.0.19" />
|
||||||
<plugin name="com-darryncampbell-cordova-plugin-intent" spec="~1.0.2" />
|
<plugin name="com-darryncampbell-cordova-plugin-intent" spec="~1.0.2" />
|
||||||
<plugin name="cordova-sqlite-evcore-extbuild-free" spec="~0.9.7" />
|
<plugin name="cordova-sqlite-evcore-extbuild-free" spec="~0.9.7" />
|
||||||
|
<plugin name="cordova-plugin-badge" spec="0.8.7" />
|
||||||
|
<engine name="android" spec="6.1.2" />
|
||||||
|
<engine name="ios" spec="4.3.1" />
|
||||||
</widget>
|
</widget>
|
||||||
|
|
12
package.json
12
package.json
|
@ -82,7 +82,9 @@
|
||||||
"rxjs": "5.5.11",
|
"rxjs": "5.5.11",
|
||||||
"sw-toolbox": "3.6.0",
|
"sw-toolbox": "3.6.0",
|
||||||
"ts-md5": "^1.2.2",
|
"ts-md5": "^1.2.2",
|
||||||
"zone.js": "0.8.26"
|
"zone.js": "0.8.26",
|
||||||
|
"cordova-android": "6.1.2",
|
||||||
|
"cordova-ios": "4.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ionic/app-scripts": "3.1.9",
|
"@ionic/app-scripts": "3.1.9",
|
||||||
|
@ -97,5 +99,11 @@
|
||||||
},
|
},
|
||||||
"browser": {
|
"browser": {
|
||||||
"electron": false
|
"electron": false
|
||||||
|
},
|
||||||
|
"cordova": {
|
||||||
|
"platforms": [
|
||||||
|
"android",
|
||||||
|
"ios"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue