Cordova Slack Digest

Fri, 12 Nov 2021 08:21:14 GMT

User count: 4676

Join the conversation at slack.cordova.io

Channel #general (3 messages)


Thu, 11 Nov 2021 19:23:43 GMT

@theus2719 says

Hi, how can I force my app to open external links directly in the app without opening in another browser?

Thu, 11 Nov 2021 19:33:08 GMT

@lz1ncs says

@theus2719 you should probably use the cordova-plugin-inappbrowser plugin to solve this problem

Thu, 11 Nov 2021 19:33:12 GMT

@lz1ncs says

https://github.com/apache/cordova-plugin-inappbrowser

Channel #cordova-ios (10 messages)


Thu, 11 Nov 2021 11:31:40 GMT

@lz1ncs says

you‘ll probably have to use something like <config-file> in your cordova project’s config.xml to change this option.

Thu, 11 Nov 2021 11:32:58 GMT

@lz1ncs says

   &lt;false /&gt;
&lt;/config-file&gt;```

Thu, 11 Nov 2021 11:33:24 GMT

@lz1ncs says

something like that, this was just an example, I haven't tested it

Thu, 11 Nov 2021 11:46:11 GMT

@lz1ncs says

you can also use the -exportOptionsPlist option in xcodebuild

Thu, 11 Nov 2021 11:46:22 GMT

@lz1ncs says

FromĀ xcodebuild -help:

Thu, 11 Nov 2021 11:46:30 GMT

@lz1ncs says


manageAppVersionAndBuildNumber Should Xcode manage the app's build number when uploading to App Store Connect? Defaults to YES.```

Thu, 11 Nov 2021 13:29:19 GMT

@daviesd says

Ya, I tried the config-file option as well. It didn‘t work. The modification didn’t get made. How would I add -exportOptionPlist to xcodebuild? cordova is the one that kicks that off.

Thu, 11 Nov 2021 13:31:34 GMT

@lz1ncs says

do you run cordova prepare after edit config.xml?

Thu, 11 Nov 2021 13:32:56 GMT

@lz1ncs says

after add config-file option u need run cordova prepare

Thu, 11 Nov 2021 13:33:55 GMT

@lz1ncs says

days ago I needed to add the camera permissions in the config.xml, and I needed to run cordova prepare for the permissions to be applied in the project.