Skip to content
This repository was archived by the owner on Dec 6, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
11.0.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ DVSA Mobile Examiner Services (GDS Beta phase)

### Pre-requisites

* Node (v 8.9.x)
* npm (v 5.5.1)
* Node (v 11.0.0)
* npm (v 6.4.1)
* Ionic CLI + Cordova: `npm install -g cordova ionic`
* Security
* [Git secrets](https://github.com/awslabs/git-secrets)
Expand Down
37 changes: 20 additions & 17 deletions config.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="uk.gov.dvsa.mobile-examiner" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Mobile Examiner Alpha</name>
<description>Alpha stage for Mobile Examiner Services.</description>
<name>Mobile Examiner Beta</name>
<description>Beta stage for Mobile Examiner Services.</description>
<author email="[email protected]">MES Team</author>
<content src="index.html" />
<access origin="*" />
Expand Down Expand Up @@ -76,30 +76,33 @@
<splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" />
<splash height="2732" src="resources/ios/splash/Default@2x~universal~anyany.png" width="2732" />
</platform>
<edit-config file="*-Info.plist" mode="merge" target="NSMicrophoneUsageDescription">
<string>Need microphone access to record audio</string>
</edit-config>
<plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
<plugin name="cordova-plugin-device" spec="^2.0.1" />
<plugin name="cordova-plugin-device" spec="^2.0.2" />
<plugin name="cordova-plugin-splashscreen" spec="^5.0.2" />
<plugin name="cordova-plugin-ionic-webview" spec="^1.1.16" />
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.0.5" />
<plugin name="cordova-plugin-statusbar" spec="^2.4.1" />
<plugin name="cordova-plugin-screen-orientation" spec="~3.0.1" />
<plugin name="cordova-plugin-insomnia" spec="~4.3.0" />
<plugin name="cordova-plugin-advanced-http" spec="^1.11.0" />
<plugin name="cordova-plugin-ionic" spec="^4.1.0">
<plugin name="cordova-plugin-ionic-webview" spec="^2.0.0" />
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.1.3" />
<plugin name="cordova-plugin-statusbar" spec="^2.4.2" />
<plugin name="cordova-plugin-screen-orientation" spec="^3.0.1" />
<plugin name="cordova-plugin-insomnia" spec="^4.3.0" />
<plugin name="cordova-plugin-advanced-http" spec="^1.11.1" />
<plugin name="cordova-plugin-ionic" spec="~4.2.0">
<variable name="APP_ID" value="33dd3db4" />
<variable name="CHANNEL_NAME" value="Production" />
<variable name="UPDATE_METHOD" value="background" />
<variable name="WARN_DEBUG" value="true" />
<variable name="UPDATE_API" value="https://api.ionicjs.com" />
<variable name="MAX_STORE" value="2" />
<variable name="ROLLBACK_TIMEOUT" value="10" />
<variable name="MIN_BACKGROUND_DURATION" value="30" />
</plugin>
<plugin name="cordova-plugin-device-authentication" spec="~0.0.1" />
<plugin name="cordova-plugin-globalization" spec="^1.11.0" />
<plugin name="cordova-plugin-file" spec="^6.0.1" />
<plugin name="cordova-plugin-media" spec="^5.0.2" />
<edit-config file="*-Info.plist" mode="merge" target="NSMicrophoneUsageDescription">
<string>Need microphone access to record audio</string>
</edit-config>
<engine name="ios" spec="4.5.4" />
<engine name="browser" spec="5.0.3" />
<plugin name="cordova-plugin-media" spec="^5.0.2">
<variable name="KEEP_AVAUDIOSESSION_ALWAYS_ACTIVE" value="NO" />
</plugin>
<engine name="browser" spec="^5.0.4" />
<engine name="ios" spec="4.5.5" />
</widget>
5 changes: 2 additions & 3 deletions ionic.config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "App",
"app_id": "",
"type": "ionic-angular",
"integrations": {
"cordova": {}
}
},
"type": "ionic-angular"
}
Loading