Skip to content

Commit 51cfb8f

Browse files
authored
Merge pull request #126 from mendix/fix/default-login
[MOO-1376] Change scheme value to 'app' and make available for only iOS
2 parents 0b4f927 + 7cf3a74 commit 51cfb8f

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ This project can be used to create a templated Phonegap Build package, as used w
2121
- Linux, BSD, etc: install using the available package manager, e.g. on Debian: `sudo apt-get install node`
2222
- To customize the runtime behavior, include the following configuration: Set [com.mendix.core.SameSiteCookies](https://docs.mendix.com/refguide/custom-settings/#commendixcoreSameSiteCookies) to `None` in Studio Pro.
2323
- Deploy and test the application using HTTPS.
24+
- The scheme configuration in `config.xml` should not be changed to any value other than `app` for iOS.
2425

2526
### Build
2627

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mendix/mendix-hybrid-app-base",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"description": "Mendix PhoneGap Build base package",
55
"scripts": {
66
"appbase": "node ./node_modules/webpack/bin/webpack --config ./webpack.config.appbase.js",

src/config.xml.mustache

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,11 @@
117117
<plugin name="@ahovakimyan/cordova-plugin-wkwebviewxhrfix" source="npm" spec="1.0.2" />
118118

119119
<preference name="KeyboardDisplayRequiresUserAction" value="false" />
120-
<preference name="scheme" value="https" />
121-
<preference name="hostname" value="localhost" />
122120

123121
<platform name="ios">
122+
<preference name="scheme" value="app" />
123+
<preference name="hostname" value="localhost" />
124+
124125
{{#iosImages}}
125126
<{{{tag}}} src="{{{filename}}}" width="{{{width}}}" height="{{{height}}}" />
126127
{{/iosImages}}

0 commit comments

Comments
 (0)