You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/06/12 17:50:18 UTC

[GitHub] [cordova-ios] jonamat opened a new issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

jonamat opened a new issue #898:
URL: https://github.com/apache/cordova-ios/issues/898


   # Bug Report
   
   ## Problem
   Safari does not open with wkwebview. With UIwebview, before the updates, it worked
   
   `window.open('https://google.com', "_self")` - this opens a new page in inappbrowser (as expected)
   `window.open('https://google.com', "_blank")` - nothing
   `window.open('https://google.com', "_system") `- nothing
   I've tried also with `<a href="https://google.com" target="_system">foo</a>` but nothing happens
   
   ### What is expected to happen?
   Open the system browser
   
   ### What does actually happen?
   Nothing
   
   ## Information
   
   ### Command or Code
   
   Noteworthy lines on config.xml
   ```
       <allow-navigation href="*" />
       <allow-intent href="*" />
       <access origin="*" />
   ```
   
   Dependencies
   ```
     "dependencies": {
       "cordova-android": "^8.1.0",
       "cordova-ios": "^6.0.0",
       "cordova-plugin-androidx": "^2.0.0",
       "cordova-plugin-androidx-adapter": "^1.1.1",
       "cordova-plugin-browsertab": "0.2.0",
       "cordova-plugin-buildinfo": "4.0.0",
       "cordova-plugin-compat": "1.2.0",
       "cordova-plugin-customurlscheme": "5.0.1",
       "cordova-plugin-device": "^2.0.3",
       "cordova-plugin-firebase-messaging": "^4.0.2",
       "cordova-plugin-inappbrowser": "git+https://github.com/apache/cordova-plugin-inappbrowser.git",
       "cordova-support-android-plugin": "^1.0.2",
       "cordova-support-google-services": "^1.4.0",
       "cordova-universal-links-plugin-fix": "1.2.1"
     },
     "devDependencies": {
       "cordova-plugin-whitelist": "1"
     },
     "cordova": {
       "plugins": {
         "cordova-plugin-whitelist": {},
         "cordova-plugin-firebase-messaging": {
           "FIREBASE_ANALYTICS_VERSION": "17.2.+",
           "FIREBASE_MESSAGING_VERSION": "20.1.+",
           "ANDROIDX_CORE_VERSION": "1.0.+"
         },
         "cordova-plugin-device": {},
         "cordova-plugin-buildinfo": {},
         "cordova-universal-links-plugin": {},
         "cordova-plugin-browsertab": {},
         "cordova-plugin-customurlscheme": {
           "URL_SCHEME": "----------------"
         },
         "cordova-plugin-androidx": {},
         "cordova-plugin-androidx-adapter": {},
         "cordova-plugin-inappbrowser": {}
       },
       "platforms": [
         "ios",
         "android"
       ]
     }
   
   ```
   
   ### Environment, Platform, Device
   iOS 13.3 on Catalina simulator
   
   ### Version information
   cordova version: 9.0.0 (cordova-lib@9.0.1)
   cordova platform: cordova-ios 6.0.0
   tested on: iOS 13.3 on Catalina simulator
   
   ## Checklist
   
   - [x] I searched for existing GitHub issues
   - [x] I updated all Cordova tooling to most recent version
   - [x] I included all the necessary information above
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] jonamat commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
jonamat commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-688510906


   > Ok, but... if window.open was removed, what we should use to do the same as window.open?
   
   `window.cordova.InAppBrowser.open()` 
   instead of 
   `window.open()`
   From what I understand window.open was being overwritten in v<4 of cordova-plugin-inappbrowser


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] sardapv commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
sardapv commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-690532275


   > earlier I was using post message and was using window.open to navigate to external links..but now since I have to inappbrowser.create.. postmessage hooks are lost
   
   I managed to get subscription over IAB, unsubscribe old and subscribe new.. 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] jonamat commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
jonamat commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-688904420


   > Right. But `mailto:email@email.com` do not work with `window.cordova.InAppBrowser.open()`
   
   for mailto you should use the window method
   
   I found this line on a recent working project
   ```
    window.open(`mailto:${process.env.EMAIL}?subject=${t('Status report')}`, '_system', 'hidden=yes,location=no');
   ```
   It opens the mail app, the `hidden=yes,location=no` should be a fix for iOS, but I'm not sure
   
   it works with
   ```
     "cordova-android": "^8.1.0",
       "cordova-ios": "^6.0.0",
       "cordova-plugin-androidx": "^2.0.0",
       "cordova-plugin-androidx-adapter": "^1.1.1",
       "cordova-plugin-browsertab": "0.2.0",
       "cordova-plugin-buildinfo": "4.0.0",
       "cordova-plugin-compat": "1.2.0",
       "cordova-plugin-customurlscheme": "5.0.1",
       "cordova-plugin-device": "^2.0.3",
       "cordova-plugin-firebase-messaging": "^4.0.2",
       "cordova-plugin-inappbrowser": "^4.0.0",
       "cordova-support-android-plugin": "^1.0.2",
       "cordova-support-google-services": "^1.4.0",
       "cordova-universal-links-plugin-fix": "1.2.1"
   ```
   
   config.xml
   ```
   <allow-intent href="mailto:*" />
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] jonatarussi commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
jonatarussi commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-688481047


   Ok, but... if window.open was removed, what we should use to do the same as window.open?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] timbru31 commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
timbru31 commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-643744076


   The window.open clobber was removed in the InAppBrowser v4 release, that’s why it’s a breaking change. More information can be found in our blog: https://cordova.apache.org/news/2020/06/13/plugins-release.html


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] jonatarussi commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
jonatarussi commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-688915598


   Thanks. I tried but no success..
   
   Using `cordova-ios 6.1.0` and `cordova-plugin-inappbrowser 4.0.0`
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] qmclaugh edited a comment on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
qmclaugh edited a comment on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-715582834


   With Apple's new WKWebView requirement, this just got sloppy.  None of the whitelisting etc worked for me, nor could I use InAppBrowser.open now window.open with _system target - somehow that caused my entire app to lose state and reset to pre-login.  I ended up using this plugin and solved.  Hope this helps someone else.
   
   https://github.com/PaoloMessina/OpenUrlExt


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] timbru31 closed issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
timbru31 closed issue #898:
URL: https://github.com/apache/cordova-ios/issues/898


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] victor-sanchez-ccc commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
victor-sanchez-ccc commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-643691367


   i have same problem too,  "_system"  nothing happens 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] sardapv commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
sardapv commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-689450021


   earlier I was using post message and was using window.open to navigate to external links..but now since I have to inappbrowser.create.. postmessage hooks are lost


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] sardapv commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
sardapv commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-689066691


   @jonatarussi I use https://ionicframework.com/docs/native/email-composer this one for email, works nicely. For android only you need to override one import in provider.java if project is AndroidX enabled. you can find that in PR of that GitHub


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] nitsand commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
nitsand commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-770348008


   What's the up-to-date status of this in both Android and iOS?
   
   Also: What if I call the InAppBrowser with a url of a page that calls window.open?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] qmclaugh commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
qmclaugh commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-715582834


   With Apple's new WKWebView requirement, this just got sloppy.  None of the whitelisting etc worked for me, nor could I use InAppBrowser.open now window.open with _system target.  I ended up using this plugin and solved.  Hope this helps someone else.
   
   https://github.com/PaoloMessina/OpenUrlExt


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] qmclaugh edited a comment on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
qmclaugh edited a comment on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-715582834


   With Apple's new WKWebView requirement, this just got sloppy.  None of the whitelisting etc worked for me, nor could I use InAppBrowser.open or window.open with _system target. Somehow that caused my entire app to lose state and reset to pre-login.  I ended up using this plugin and solved.  Hope this helps someone else.
   
   https://github.com/PaoloMessina/OpenUrlExt


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] victor-sanchez-ccc commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
victor-sanchez-ccc commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-643697420


   I solved  this using latest version of  cordova-plugin-inappbrowser install the plugin and change
   window.open whit  cordova.InAppBrowser.open this way , 
    `cordova.InAppBrowser.open('https://www.google.com', '_system', 'hidden=yes,location=no')` and works perfect .
   
   https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-inappbrowser/
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] bgever commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
bgever commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-729450208


   I found that using `window.open()` inside a synchronous `click` event handler works, but if the `window.open()` is called asynchronously (e.g. in an Angular rxjs observable), then it is blocked.
   
   This blocking behavior can be tested when you attach the Safari devtools, and then try to run `window.open()` from the Console, it will also return `null`. However, if you attach a click event listener to any element from the Console, and call the same window.open() inside the handler, it will execute when clicking the element. This seems to be a Safari security feature.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] victor-sanchez-ccc edited a comment on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
victor-sanchez-ccc edited a comment on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-643691367


   i have same problem too,  "_system"  nothing happens ,  whit  cordova cli 9.0.0, cordova ios 6.0.0, xcode 11.5 and ios  13.5.1


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] maswerdna commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
maswerdna commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-735301213


   window.open seems to work with cordova-cli@10, inappbrowser plugin@4 and cordova-ios>6 when called from a synchronous event handler, however when I try to open a url returned by ajax call inside the ajax success handler, nothing seems to work


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] jonatarussi commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
jonatarussi commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-688796405


   > > Ok, but... if window.open was removed, what we should use to do the same as window.open?
   > 
   > `window.cordova.InAppBrowser.open()`
   > instead of
   > `window.open()`
   > From what I understand window.open was being overwritten in v<4 of cordova-plugin-inappbrowser
   
   Right. But `mailto:email@email.com` do not work with `window.cordova.InAppBrowser.open()`


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] sriram6781 commented on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
sriram6781 commented on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-690328140


   It seems to be working if you try to use the InAppBrowser plugin as shown below. window.open didn't work on iOS. 
   
   cordova.InAppBrowser.open('https://www.google.com', '_system','location=no,hidden=yes');
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] timbru31 edited a comment on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
timbru31 edited a comment on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-643744076


   The window.open clobber was removed in the InAppBrowser v4 release, that’s why it’s a breaking change. More information can be found on our blog: https://cordova.apache.org/news/2020/06/13/plugins-release.html


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] victor-sanchez-ccc edited a comment on issue #898: window.open() with _system does not work with wkwebview (on cordova-ios 6.0.0)

Posted by GitBox <gi...@apache.org>.
victor-sanchez-ccc edited a comment on issue #898:
URL: https://github.com/apache/cordova-ios/issues/898#issuecomment-643691367


   i have same problem too,  "_system"  nothing happens ,  whit  cordova 6.0.0, xcode 11.5 and ios  13.5.1


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org