Cordova Slack Digest Fri, 03 Jul 2020 08:40:21 GMT User count: 3988 https://cordova.slack.com/ Join the conversation at http://slack.cordova.io/ Channel #general (17 messages) ========= Wed, 01 Jul 2020 09:38:52 GMT @michael339 says Hi All, question. I am creating a new app based on a template. What is the best way to change version, description ? Wed, 01 Jul 2020 09:39:32 GMT @michael339 says documentation says use config (json) But there is no documentation how it works Wed, 01 Jul 2020 12:06:06 GMT @drouard.noelie says Hello ! I have a small problem when I use the camera plugin. I use it to take a picture then upload it on my app, but instead of uploading then displaying the picture, I need to tap somewhere for it to display the picture, even though it was displayed successfully. Did anyone get this problem? Wed, 01 Jul 2020 12:59:29 GMT @sudheesh says hi my angular 8 cordova app nor firing device ready event Wed, 01 Jul 2020 14:17:46 GMT @marcus.allen.gunn says Does anyone have experience updating the WebView on a rooted Android device (Lollipop in my case) without access to the Playstore? I believe my WebView version lacks the necessary support for Google Firestore. Wed, 01 Jul 2020 16:25:13 GMT @rohit.agre says Hey guys, im trying to build a `nsis-web` build but i dont know where do i supply the required config parameters. please help <#CECCHAHGU|cordova-electron> Thu, 02 Jul 2020 07:52:34 GMT @drouard.noelie says Hey, in my angular project, I installed ```cordova-plugin-dialogs``` but Navigator doesn't recognize notification. I tried to add it in my typing file but it still doesn't work. Did I forget a step? Thu, 02 Jul 2020 08:41:54 GMT @delpiano.salvatore96 says Good morning everyone, I'm developing custom cordova plugins and have a few questions. Some of my custom plugins are not that simple so I need AndroidStudio/Xcode autocompletion and debugging systems, and for accessing them I need the native cordova generated projects. My development workflow is then the following: I create the skeleton of my plugin, add it to a cordova testing only application, open android and ios native projects and further developing my plugins there. When I finish developing a plugin I extract the sources from the native projects and put them into the plugin project ready for distribution. My question is, there exist a best practice to develop native plugins with context or the way I described is the way to go? Thu, 02 Jul 2020 13:42:47 GMT @jimmy says Anyone present with knowledge of the internals of `cordova-plugin-file-transfer`? I need to know whether it supports certificate transparency. Thu, 02 Jul 2020 14:20:20 GMT @dan590 says Hi all, Has anyone here successfully used “File” plugin with Cordova’s Electron platform? Thu, 02 Jul 2020 17:53:58 GMT @sacchigabri says Hi guys, any help with measuring the total load time of a Cordova App please? (Android + iOS) <https://stackoverflow.com/questions/62702109/how-to-measure-load-time-of-phonegap-cordova-ionic-app> Thu, 02 Jul 2020 17:59:04 GMT @etienne says Hello every one! I'm new in Apache Cordova. My team and I build a web application base with the Selte framework/compiler and I juste try to export my build with webpack on the /dist folder ON /www and when I click on a link nothing happen. Any advice technically how to manage route in Cordova with SPA app?
Here the <https://dev.d2882f9e1s8mt5.amplifyapp.com/|web instance example> I used for Cordova with ios emulator. ```<a href="/example">/example</a>``` Thu, 02 Jul 2020 18:02:17 GMT @dpogue says If you only have a single-page app, you'll need to use hash URLs with Cordova because when you try to load `/example` it's going to look for `example` instead of `index.html` Fri, 03 Jul 2020 02:28:51 GMT @shazron says SVG support in Xcode 12 (with deployment target of at least iOS 13, iPadOS 13, macOS 10.15) <https://bjango.com/articles/svgassetcatalogs/> Fri, 03 Jul 2020 02:49:37 GMT @dpogue says but can it be used for app icons instead of 24+ sizes? Fri, 03 Jul 2020 03:19:19 GMT @shazron says I assume so since those are in asset catalogs? not sure Fri, 03 Jul 2020 07:28:36 GMT @jcesarmobile says The other day closing old issues I saw one about pdf vector images support (I think it was for splash only), but we never did anything about it ------- Channel #cordova-ios (8 messages) ========= Wed, 01 Jul 2020 23:22:46 GMT @jacobsgur says Since upgrading from cordova-ios 5.1 to 6.1, specifically on the iPad (iOS 13), my app is receiving two screen tap events for every one actual tap. This results in strange behavior, like toggles flipping back and forth, and duplicate digits when pressing on a dom-based pin pad my app has, etc. Has anyone seen such an issue? Thu, 02 Jul 2020 00:28:36 GMT @jacobsgur says The only thing I can think is related is that iPad added "desktop-class browsing" in Safari 13. <https://developer.apple.com/documentation/safari-release-notes/safari-13-release-notes> But I didn't encounter this issue with cordova-ios 5.1 even when built with Xcode 11.5. Thu, 02 Jul 2020 15:44:46 GMT @dave854 says Something that continually arises as an issue within my Cordova plugins is conflicts with other plugins which register for the same app delegate methods on iOS. Since only one delegate method can be implemented, if 2 or more plugins register for the same one (e.g. `didReceiveRemoteNotification`), then only one of those methods will receive the event. @katzer has created a 3rd-party solution for this in the guise of <https://github.com/katzer/cordova-plugin-app-event> which acts as an intermediary plugin to rebroadcast specific app delegate events, allowing multiple plugins to consume them. In the short term, I intend to (extend via PR and) consume this plugin as a dependency e.g. in my fork of cordova-plugin-firebase: <https://github.com/dpa99c/cordova-plugin-firebasex/issues/443> However longer term, I think it's something that would be nice to integrate into `cordova-ios` itself, so that it can provide a single app delegate which listeners for and rebroadcasts (all?) app delegate methods for consumption by multiple plugins simultaneously. @dpogue what's your thoughts on this? Thu, 02 Jul 2020 16:07:29 GMT @jcesarmobile says We probably don’t want push related delegates in core since Apple warns if they are present but the app don’t have push entitlements Thu, 02 Jul 2020 16:07:56 GMT @dpogue says A bunch of those were in cordova-iOS at one point, firing NSNotifications... I think jcesarmobile is correct about the reason they were removed Thu, 02 Jul 2020 16:18:35 GMT @dpogue says <https://github.com/apache/cordova-ios/commit/962f47cbf050c469372201c42357a3bb938f26ac> Thu, 02 Jul 2020 16:23:19 GMT @dpogue says Note that iOS has some notifications built-in: <https://developer.apple.com/documentation/uikit/uiapplicationdidfinishlaunchingnotification?language=objc> Thu, 02 Jul 2020 17:52:54 GMT @sacchigabri says Hi guys, any help with measuring the total load time please? <https://stackoverflow.com/questions/62702109/how-to-measure-load-time-of-phonegap-cordova-ionic-app> ------- Channel #plugins (1 messages) ========= Wed, 01 Jul 2020 11:41:21 GMT @george.earp094 says Guys, I’m looking for a deeplink plugin, any advice on that ? ------- Channel #cordova-electron (4 messages) ========= Wed, 01 Jul 2020 16:26:41 GMT @rohit.agre says hey guys, where do i put `nsis-web` options ? Thu, 02 Jul 2020 11:47:48 GMT @rohit.agre says nobody? Thu, 02 Jul 2020 16:26:52 GMT @erisu says <https://cordova.apache.org/docs/en/latest/guide/platforms/electron/index.html#adding-a-package> Thu, 02 Jul 2020 19:35:03 GMT @rohit.agre says Hi @erisu i am able to add packages, but i would like to add additional configuration parameters for a particular package. -------