Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#118] iOS testing #178

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
15 changes: 13 additions & 2 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,24 @@
<icon density="xxhdpi" src="images/favicon/favicon-android-xxhdpi.png" />
<icon density="xxxhdpi" src="images/favicon/favicon-android-xxxhdpi.png" />
</platform>
<engine name="android" spec="7.0.0" />
<engine name="browser" spec="5.0.3" />
<platform name="ios">
<icon height="57" src="images/favicon/apple-touch-icon-57x57.png" width="57" />
<icon height="60" src="images/favicon/apple-touch-icon-60x60.png" width="60" />
<icon height="72" src="images/favicon/apple-touch-icon-72x72.png" width="72" />
<icon height="76" src="images/favicon/apple-touch-icon-76x76.png" width="76" />
<icon height="114" src="images/favicon/apple-touch-icon-114x114.png" width="114" />
<icon height="120" src="images/favicon/apple-touch-icon-120x120.png" width="120" />
<icon height="144" src="images/favicon/apple-touch-icon-144x144.png" width="144" />
<icon height="152" src="images/favicon/apple-touch-icon-152x152.png" width="152" />
</platform>
<plugin name="cordova-plugin-whitelist" spec="1.3.3" />
<plugin name="cordova-sqlite-storage" spec="2.2.1" />
<plugin name="phonegap-plugin-barcodescanner" spec="7.0.2" />
<plugin name="cordova-android-support-gradle-release" spec="1.2.0">
<variable name="ANDROID_SUPPORT_VERSION" value="26.+" />
</plugin>
<plugin name="cordova-plugin-inappbrowser" spec="2.0.2" />
<engine name="android" spec="7.0.0" />
<engine name="browser" spec="5.0.3" />
<engine name="ios" spec="4.5.4" />
</widget>
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"cordova-android": "7.0.0",
"cordova-android-support-gradle-release": "1.2.0",
"cordova-browser": "5.0.3",
"cordova-ios": "4.5.4",
"cordova-plugin-inappbrowser": "2.0.2",
"cordova-plugin-whitelist": "1.3.3",
"cordova-sqlite-storage": "2.2.1",
Expand Down Expand Up @@ -80,7 +81,8 @@
"cordova": {
"platforms": [
"android",
"browser"
"browser",
"ios"
],
"plugins": {
"cordova-plugin-whitelist": {},
Expand Down