[GitHub] [cordova] breautek commented on issue #85: Cordova 9 q is not supported

2020-06-06 Thread GitBox


breautek commented on issue #85:
URL: https://github.com/apache/cordova/issues/85#issuecomment-640070092


   > hi i've the same error did you find the solution
   > i removed the crosswalk dependency fom my package.json and it dosen't work 
yet
   
   See
   
   > Plugins should not be using modules that Cordova uses internally. We have 
also been removing Q from our libraries tools and platforms etc.
   >
   >If a plugin relies on the Q npm package, that plugin should be updated to 
include this package as a dependency and use the native require call.
   
   You still have out-dated plugins. You'll have to determine which plugins is 
at fault (usually recognisable from the stacktrace), and either upgrade those 
plugins, or if they are already at latest, you should raise the issue with the 
plugin maintainers 



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] fabmesto commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-08 Thread GitBox


fabmesto commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-640505021


   is there any alternative to this plugin?



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] kolbasa commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-09 Thread GitBox


kolbasa commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-640539009







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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] johnjackson commented on issue #244: iOS: Upload encounters "Invalid URL server" with DATA_URL destinationType

2020-06-09 Thread GitBox


johnjackson commented on issue #244:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/244#issuecomment-641155736


   the second parameter of upload should use encodeURI(), for example:
   `  
   fileTransferObj.upload(fileObj.file_path, encodeURI(uploadURL), 
options).then((res) => {
   observer.next(res);
   }, (err) => {
   this.toast.showToast(err, 2000);
   }).catch((e) => {});
   `



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] nevstas opened a new issue #216: Cordova net::ERR_INVALID_RESPONSE

2020-06-09 Thread GitBox


nevstas opened a new issue #216:
URL: https://github.com/apache/cordova/issues/216


   Try load external website (google.com) in Cordova.
   
   My config.xml:
   
   ```
   
   http://www.w3.org/ns/widgets"; 
xmlns:cdv="http://cordova.apache.org/ns/1.0";>
   Invest 2020
   
   A sample Apache Cordova application that responds to the deviceready 
event.
   
   http://cordova.io";>
   Apache Cordova Team
   
   https://google.com"; />
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   ```
   
   
   I get an error when trying to run app:
   
   net::ERR_INVALID_RESPONSE
   
   
![n9eYdw55TeU](https://user-images.githubusercontent.com/22144214/84137604-9c554f00-aa55-11ea-97ae-923a34e84364.jpg)
   
   ### Version information
   Cordova version 9.0.0
   Cordova Platform android version 8.1.0
   Windows 10, Xiaomi Readmi 4
   
   
   
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] vtellez commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-09 Thread GitBox


vtellez commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-641105474


   Same error with:
   cordova-ios: 6.0.0
   cordova-plugin-file-transfer : 1.7.1
   
   I cant not compile with @jansc Solution because Ive got:  
Plugins/cordova-plugin-inappbrowser/CDVWKInAppBrowser.m:27:9: 
'Cordova/CDVUserAgentUtil.h' file not found if I delete Lines 107-110



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] alssl-ross commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-09 Thread GitBox


alssl-ross commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-640684797


   I did go through the process of moving from this plugin to XHR but found 
that it failed for downloads of large zip files, causing me to revert back to 
this plugin.
   
   I can compile now thanks to @jansc's comment above. I'm wondering if there 
is any effect on functionality from removing the userAgent lines. I've not been 
able to test for myself as yet.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] johnjackson edited a comment on issue #244: iOS: Upload encounters "Invalid URL server" with DATA_URL destinationType

2020-06-09 Thread GitBox


johnjackson edited a comment on issue #244:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/244#issuecomment-641155736


   the second parameter of upload should use encodeURI(), for example:
   `  
   fileTransferObj.upload(fileObj.file_path, encodeURI(uploadURL), 
options).then((res) => {
   observer.next(res);
   }, (err) => {
   this.toast.showToast(err, 2000);
   }).catch((e) => {});
   `
   see [docs](https://github.com/apache/cordova-plugin-file-transfer)



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] kolbasa edited a comment on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-09 Thread GitBox


kolbasa edited a comment on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-641108863


   > Same error with:
   > cordova-ios: 6.0.0
   > cordova-plugin-file-transfer : 1.7.1
   > 
   > I cant not compile with @jansc Solution because Ive got: 
Plugins/cordova-plugin-inappbrowser/CDVWKInAppBrowser.m:27:9: 
'Cordova/CDVUserAgentUtil.h' file not found if I delete Lines 107-110
   
   That was fixed on the master branch of `cordova-plugin-inappbrowser`:
   https://github.com/apache/cordova-plugin-inappbrowser/pull/715



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] brodybits opened a new pull request #38: cleanup: remove trailing spaces

2020-06-09 Thread GitBox


brodybits opened a new pull request #38:
URL: https://github.com/apache/cordova-contribute/pull/38


   
   
   ### Platforms affected
   
   all
   
   ### Motivation and Context
   
   
   
   I have seen the trailing spaces in multiple Cordova repositories, hope to 
get them at the source.
   
   ### Description
   
   
   see title
   
   ### Testing
   
   
   `git grep ' $'` shows no more trailing spaces
   
   ### Checklist
   
   - ~~I've run the tests to see all new and existing tests pass~~
   - ~~I added automated test coverage as appropriate for this change~~
   - ~~Commit is prefixed with `(platform)` if this change only applies to one 
platform (e.g. `(android)`)~~
   - ~~If this Pull Request resolves an issue, I linked to the issue in the 
text above (and used the correct [keyword to close issues using 
keywords](https://help.github.com/articles/closing-issues-using-keywords/))~~
   - [x] I've updated the documentation if necessary
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] brodybits commented on pull request #38: cleanup: remove trailing spaces

2020-06-10 Thread GitBox


brodybits commented on pull request #38:
URL: https://github.com/apache/cordova-contribute/pull/38#issuecomment-641841185


   I think PR #37 should be merged first. PR #37 would obsolete the proposed 
update to `CONTRIBUTING.md`.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] brodybits commented on pull request #37: doc: add & update required core repo files

2020-06-10 Thread GitBox


brodybits commented on pull request #37:
URL: https://github.com/apache/cordova-contribute/pull/37#issuecomment-641842484


   Can we merge this?



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] timbru31 commented on a change in pull request #37: doc: add & update required core repo files

2020-06-10 Thread GitBox


timbru31 commented on a change in pull request #37:
URL: https://github.com/apache/cordova-contribute/pull/37#discussion_r437968415



##
File path: CONTRIBUTING.md
##
@@ -21,17 +21,19 @@
 
 # Contributing to Apache Cordova
 
-Anyone can contribute to Cordova. And we need your contributions.
+Anyone can contribute to the Apache Cordova project, and we welcome your 
contributions.
 
-There are multiple ways to contribute: report bugs, improve the docs, and
-contribute code.
-  
-For instructions on this, start with the
-[contribution overview](http://cordova.apache.org/contribute/).
+There are multiple ways to contribute to this project:
 
-The details are explained there, but the important items are:
- - Check for Github issues that corresponds to your contribution and link or 
create them if necessary.
- - Run the tests so your patch doesn't break existing functionality.
+* Report Bugs
+* Improve Documentation
+* Write Source Code
 
-We look forward to your contributions!
+For detailed instructions, please read our [Contribution 
Overview](http://cordova.apache.org/contribute/) and [Contributor 
Guidelines](https://cordova.apache.org/contribute/contribute_guidelines.html) 
on our website.

Review comment:
   https





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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] timbru31 commented on a change in pull request #37: doc: add & update required core repo files

2020-06-10 Thread GitBox


timbru31 commented on a change in pull request #37:
URL: https://github.com/apache/cordova-contribute/pull/37#discussion_r437968415



##
File path: CONTRIBUTING.md
##
@@ -21,17 +21,19 @@
 
 # Contributing to Apache Cordova
 
-Anyone can contribute to Cordova. And we need your contributions.
+Anyone can contribute to the Apache Cordova project, and we welcome your 
contributions.
 
-There are multiple ways to contribute: report bugs, improve the docs, and
-contribute code.
-  
-For instructions on this, start with the
-[contribution overview](http://cordova.apache.org/contribute/).
+There are multiple ways to contribute to this project:
 
-The details are explained there, but the important items are:
- - Check for Github issues that corresponds to your contribution and link or 
create them if necessary.
- - Run the tests so your patch doesn't break existing functionality.
+* Report Bugs
+* Improve Documentation
+* Write Source Code
 
-We look forward to your contributions!
+For detailed instructions, please read our [Contribution 
Overview](http://cordova.apache.org/contribute/) and [Contributor 
Guidelines](https://cordova.apache.org/contribute/contribute_guidelines.html) 
on our website.

Review comment:
   ```suggestion
   For detailed instructions, please read our [Contribution 
Overview](https://cordova.apache.org/contribute/) and [Contributor 
Guidelines](https://cordova.apache.org/contribute/contribute_guidelines.html) 
on our website.
   ```

##
File path: CONTRIBUTING.md
##
@@ -21,17 +21,19 @@
 
 # Contributing to Apache Cordova
 
-Anyone can contribute to Cordova. And we need your contributions.
+Anyone can contribute to the Apache Cordova project, and we welcome your 
contributions.
 
-There are multiple ways to contribute: report bugs, improve the docs, and
-contribute code.
-  
-For instructions on this, start with the
-[contribution overview](http://cordova.apache.org/contribute/).
+There are multiple ways to contribute to this project:
 
-The details are explained there, but the important items are:
- - Check for Github issues that corresponds to your contribution and link or 
create them if necessary.
- - Run the tests so your patch doesn't break existing functionality.
+* Report Bugs
+* Improve Documentation
+* Write Source Code
 
-We look forward to your contributions!
+For detailed instructions, please read our [Contribution 
Overview](http://cordova.apache.org/contribute/) and [Contributor 
Guidelines](https://cordova.apache.org/contribute/contribute_guidelines.html) 
on our website.
 
+The most important items are:
+
+* Check for Github issues that correspond to your contribution and link them 
or create a new issue if necessary.

Review comment:
   ```suggestion
   * Check for GitHub issues that correspond to your contribution and link them 
or create a new issue if necessary.
   ```





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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] NiklasMerz commented on pull request #37: doc: add & update required core repo files

2020-06-10 Thread GitBox


NiklasMerz commented on pull request #37:
URL: https://github.com/apache/cordova-contribute/pull/37#issuecomment-641898900


   @timbru31 This is just the CONTRIBUTIN file we rolled out to all repos a 
while back. We may overhaul this again some time.
   
   But let's get this merged now to make this repo ready for release.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] NiklasMerz edited a comment on pull request #37: doc: add & update required core repo files

2020-06-10 Thread GitBox


NiklasMerz edited a comment on pull request #37:
URL: https://github.com/apache/cordova-contribute/pull/37#issuecomment-641898900


   We may need to update all repos again to push out the CONTRIBUTING file some 
time.
   
   But let's get this merged get this license stuff for this repo.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] brodybits commented on pull request #37: doc: add & update required core repo files

2020-06-10 Thread GitBox


brodybits commented on pull request #37:
URL: https://github.com/apache/cordova-contribute/pull/37#issuecomment-641991498


   > Should we create a new issue in apache/cordova to align the 
`CONTRIBUTING.md` files?
   
   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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] sohanpc commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-11 Thread GitBox


sohanpc commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-642606273


   > By removing lines 107-110 from CDVFileTransfer.m I was able to compile:
   > 
   > ```
   > NSString* userAgent = [self.commandDelegate userAgent];
   > if (userAgent) {
   > [req setValue:userAgent forHTTPHeaderField:@"User-Agent"];
   > }
   > ```
   
   It's working for me. 
   Thank you for saving my time



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] alssl-ross commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-11 Thread GitBox


alssl-ross commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-642673120


   Given the plugin is deprecated, is it worth creating a pull request? I'm not 
sure if anyone is able to merge the pull request if it was created.
   
   I've forked this repository and made this change in if it's of use to anyone:
   
   https://github.com/alssl-ross/cordova-plugin-file-transfer



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] BonBonSlick opened a new issue #217: Deprecation warnings

2020-06-15 Thread GitBox


BonBonSlick opened a new issue #217:
URL: https://github.com/apache/cordova/issues/217


   OS: Debian 9.6
   ```
   bonbon@debian:~$ sudo npm install -g cordova
   [sudo] password for bonbon: 
   npm WARN deprecated urix@0.1.0: Please see 
https://github.com/lydell/urix#deprecated
   npm WARN deprecated resolve-url@0.2.1: 
https://github.com/lydell/resolve-url#deprecated
   npm WARN deprecated request@2.88.2: request has been deprecated, see 
https://github.com/request/request/issues/3142
   /usr/bin/cordova -> /usr/lib/node_modules/cordova/bin/cordova
   + cordova@9.0.0
   added 432 packages from 355 contributors in 21.343s
   bonbon@debian:~$ 
   
   ```



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek commented on issue #217: Deprecation warnings

2020-06-15 Thread GitBox


breautek commented on issue #217:
URL: https://github.com/apache/cordova/issues/217#issuecomment-644148038


   ### urix
   
   ```
   npm-why urix
   
 Who required urix:
   
 cordova > cordova-lib > globby > fast-glob > micromatch > braces > 
snapdragon > source-map-resolve > urix@0.1.0
 cordova > cordova-lib > globby > fast-glob > micromatch > extglob > 
expand-brackets > snapdragon > source-map-resolve > urix@0.1.0
 cordova > cordova-lib > globby > fast-glob > micromatch > extglob > 
snapdragon > source-map-resolve > urix@0.1.0
 cordova > cordova-lib > globby > fast-glob > micromatch > nanomatch > 
snapdragon > source-map-resolve > urix@0.1.0
 cordova > cordova-lib > globby > fast-glob > micromatch > snapdragon > 
source-map-resolve > urix@0.1.0
   ```
   
   ### request-url
   
   ```
   npm-why resolve-url
   
 Who required resolve-url:
   
 cordova > cordova-lib > globby > fast-glob > micromatch > braces > 
snapdragon > source-map-resolve > resolve-url@0.2.1
 cordova > cordova-lib > globby > fast-glob > micromatch > extglob > 
expand-brackets > snapdragon > source-map-resolve > resolve-url@0.2.1
 cordova > cordova-lib > globby > fast-glob > micromatch > extglob > 
snapdragon > source-map-resolve > resolve-url@0.2.1
 cordova > cordova-lib > globby > fast-glob > micromatch > nanomatch > 
snapdragon > source-map-resolve > resolve-url@0.2.1
 cordova > cordova-lib > globby > fast-glob > micromatch > snapdragon > 
source-map-resolve > resolve-url@0.2.1
   ```
   
   ### request
   
   ```
   npm-why request
   
 Who required request:
   
 cordova > insight > request@2.88.2
   ```
   
   Several packages needs to be updated that is outside of our control, so it 
may take awhile before these deprecation packages is resolved.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 commented on issue #217: Deprecation warnings

2020-06-15 Thread GitBox


timbru31 commented on issue #217:
URL: https://github.com/apache/cordova/issues/217#issuecomment-644180867


   Please also note, that we have upgraded several dependencies in cordova-lib, 
some of them are breaking changes like globby v9 -> v10, too. These dependency 
updates are not yet released and will follow with the CLI v10 release.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] MrJohn2014 commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-16 Thread GitBox


MrJohn2014 commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-645008489


   Same issue here. I just comment lane 107-110 and my project could build 
successfully.  



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] raphinesse commented on issue #198: Remove platform-centered workflow support

2020-06-16 Thread GitBox


raphinesse commented on issue #198:
URL: https://github.com/apache/cordova/issues/198#issuecomment-645042473


   Here are my two cents about the problems with the platform-centered workflow.
   
   It severely *lacks documentation*, making it often unclear how things are 
supposed to work. It is *virtually untested*, making it probable that it is 
already largely broken. The little documentation that exists suggests using 
`plugman` which is terribly maintained, untested and broken and thus should be 
deprecated as well.
   
   But most importantly, trying not to break a largely undocumented and 
untested set of features is an _incredible_ impediment when trying to refactor 
Cordova components toward a more reliable, modern and maintainable state. I 
cannot stress this enough, but this fuzzy concept that we call 
"platform-centered workflow" has complicated an awful lot of the refactorings 
that I planned or attempted. Examples include efforts to simplify/eliminate 
dependency management done by Cordova itself and stop copying our platform 
build tool libraries to the platform projects (which causes all kinds of nasty 
problems. See #32 for an example).
   
   I think removing platform-centered workflow support from Cordova would mean 
getting rid of a lot of technical debt.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] purplecabbage opened a new issue #218: Update cordova docs, libraries and code to use more inclusive language

2020-06-18 Thread GitBox


purplecabbage opened a new issue #218:
URL: https://github.com/apache/cordova/issues/218


   # Bug Report
   
   ## Problem
   Our projects contain multiple uses of words and phrases that is not 
inclusive, we need to update/modernize our language usage in code, libraries, 
and documentation.
   - whitelist, blacklist should be allowlist, and denylist 
   - master/slave should become something like conductor/nodes, agents, ...
   
   
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] heyypatrick commented on issue #244: iOS: Upload encounters "Invalid URL server" with DATA_URL destinationType

2020-06-18 Thread GitBox


heyypatrick commented on issue #244:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/244#issuecomment-646115360


   > the second parameter of upload should use encodeURI(), for example:
   > ` fileTransferObj.upload(fileObj.file_path, encodeURI(uploadURL), 
options).then((res) => { observer.next(res); }, (err) => { 
this.toast.showToast(err, 2000); }).catch((e) => {});`
   > see [docs](https://github.com/apache/cordova-plugin-file-transfer)
   
   Wow! It's almost a year and I'm still stuck in this problem. Had to work on 
a workaround to fix this issue. I will surely try this one thank you, 
@johnjackson !



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] hefler commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-19 Thread GitBox


hefler commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-646637881


   Although @alssl-ross did a fork removing the lines, I thought about 
combining @kolbasa 's solution tip into an own fork: 
https://github.com/zoopit/cordova-plugin-file-transfer
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] purefan commented on issue #184: cordova create does not accept valid domain names containing dashes

2020-06-21 Thread GitBox


purefan commented on issue #184:
URL: https://github.com/apache/cordova/issues/184#issuecomment-647172246


   - If you say "reverse dns notation" then we expect it to accept hyphens
   - If you can't accept hyphens because of Android that's ok, but then we 
expect it to be documented (I could not find this behavior anywhere but maybe I 
missed it)
   
   For anyone else coming here through a web search:
   This repository pulls dependencies from other apache repositories, the 
validation for the id happens when this project calls [the cordova-cli routine 
for 
create](https://github.com/apache/cordova-cli/blob/838a05784a3bc040fbf1ec223fba976663954234/src/cli.js#L348)
 which in turn [runs the 
validation](https://github.com/apache/cordova-create/blob/5f24bdbceba46830a46dc940306688b2d71f447a/index.js#L68)
 from [valid-identifier](https://github.com/purplecabbage/valid-identifier)
   
   So one way to fix this _situation_ is to improve valid-identifier to throw 
an Error or implement some mechanism to bubble the offending part, seeing how 
valid-identifier has not been updated in a few years Id say chances of pull 
requests being accepted are slim
   
   In other words, maybe the best place for a bug report is the cordova-cli 
project, and not this one.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] raphinesse commented on issue #184: cordova create does not accept valid domain names containing dashes

2020-06-21 Thread GitBox


raphinesse commented on issue #184:
URL: https://github.com/apache/cordova/issues/184#issuecomment-647184803


   > So one way to fix this _situation_ is to improve valid-identifier to throw 
an Error or implement some mechanism to bubble the offending part, seeing how 
valid-identifier has not been updated in a few years Id say chances of pull 
requests being accepted are slim
   
   Actually, the `valid-identifier` package is maintained by Cordova's current 
PMC chair, @purplecabbage. So if there would be a quality contribution to 
improve it, I'm sure it would be considered.
   
   I don't think opening an issue in cordova-cli would help. I rather suggest 
you open a pull request on our docs to fix the lack of documentation regarding 
the constraints for app identifiers.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek commented on issue #184: cordova create does not accept valid domain names containing dashes

2020-06-22 Thread GitBox


breautek commented on issue #184:
URL: https://github.com/apache/cordova/issues/184#issuecomment-647505183


   > If you say "reverse dns notation" then we expect it to accept hyphens
   
   Yes, this is a "gotcha". Reverse DNS notation is what is commonly used in 
java/android land. But it's used for package and class names where the hyphen 
character is illegal.
   
   > If you can't accept hyphens because of Android that's ok, but then we 
expect it to be documented
   
   I always feel the documentation can be improved and this could be one of 
those things, especially since Cordova tries to abstract native details away 
from its users... I raised an issue for this at 
https://github.com/apache/cordova-docs/issues/1087



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek edited a comment on issue #184: cordova create does not accept valid domain names containing dashes

2020-06-22 Thread GitBox


breautek edited a comment on issue #184:
URL: https://github.com/apache/cordova/issues/184#issuecomment-647505183


   > If you say "reverse dns notation" then we expect it to accept hyphens
   
   Yes, this is a "gotcha". Reverse DNS notation is what is commonly used in 
java/android land. But it's used for package and class names where the hyphen, 
and other special characters is illegal.
   
   > If you can't accept hyphens because of Android that's ok, but then we 
expect it to be documented
   
   I always feel the documentation can be improved and this could be one of 
those things, especially since Cordova tries to abstract native details away 
from its users... I raised an issue for this at 
https://github.com/apache/cordova-docs/issues/1087



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] nazmisyazwan90 commented on issue #203: fileTransfer.download from https return error code 3 (SSL handshake) in android

2020-06-23 Thread GitBox


nazmisyazwan90 commented on issue #203:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/203#issuecomment-647981105


   anyone else have any other solution for this issue? tried @wynngd solution 
but with no success on Android



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] breautek commented on issue #203: fileTransfer.download from https return error code 3 (SSL handshake) in android

2020-06-23 Thread GitBox


breautek commented on issue #203:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/203#issuecomment-648208813


   Using wynngd's solution, which bypasses SSL validation is never a good idea.
   
   First, I'd recommend moving away from this plugin altogether, because this 
is plugin is deprecated. [Read this to learn 
how](https://cordova.apache.org/blog/2017/10/18/from-filetransfer-to-xhr2.html)
   
   If for some reason you cannot, then 
https://github.com/apache/cordova-plugin-file-transfer/issues/203#issuecomment-636823017
 may help you.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] wynngd commented on issue #203: fileTransfer.download from https return error code 3 (SSL handshake) in android

2020-06-23 Thread GitBox


wynngd commented on issue #203:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/203#issuecomment-648255792


   I agree with Norman here. We already started working on moving away from 
this. There is a way to download and pin a Self Signed Certificate in both 
Android and iOS.
   
   That could help fix this issue.
   
   Get Outlook for iOS
   
   From: Norman Breau 
   Sent: Tuesday, June 23, 2020 9:43:08 AM
   To: apache/cordova-plugin-file-transfer 

   Cc: wynngd ; Mention 
   Subject: Re: [apache/cordova-plugin-file-transfer] fileTransfer.download 
from https return error code 3 (SSL handshake) in android (#203)
   
   
   Using wynngd's solution, which bypasses SSL validation is never a good idea.
   
   First, I'd recommend moving away from this plugin altogether, because this 
is plugin is deprecated. Read this to learn 
how
   
   If for some reason you cannot, then #203 
(comment)
 may help you.
   
   —
   You are receiving this because you were mentioned.
   Reply to this email directly, view it on 
GitHub,
 or 
unsubscribe.
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] sc0ttdav3y commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-24 Thread GitBox


sc0ttdav3y commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-648701093


   Please @alssl-ross create a PR, and hopefully someone with access can merge 
it in.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] hefler edited a comment on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-06-24 Thread GitBox


hefler edited a comment on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-646637881


   Although @alssl-ross did a fork removing the lines, I thought about 
combining @kolbasa 's solution tip into an own fork so that checking still 
happening: https://github.com/zoopit/cordova-plugin-file-transfer 
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] elvisgraho opened a new issue #260: Timeouts after downloading a lot of files (iOS)

2020-06-25 Thread GitBox


elvisgraho opened a new issue #260:
URL: https://github.com/apache/cordova-plugin-file-transfer/issues/260


   # Bug Report
   
   ## Problem
   When you download a lot (more than 200) of files (images) consecutively, 
NSMutableURLRequest gets stuck for a while (and a few requests after that), 
because of the connection timeout.
   
   Possibly this 
[link](https://stackoverflow.com/questions/13369386/how-to-cancel-a-persistent-connection-using-nsurlconnection)
 is related, idk.
   
   As mentioned in the link above, [connection cancel] does nothing.
   
   ### What is expected to happen?
   
   No timeouts.
   
   ### What does actually happen?
   
   Timeouts.
   
   Rewriting success call did not help but seem to improve a performance a 
little bit.
   
   ``` ojbective-c
   // remove connection for activeTransfers
   @synchronized (command.activeTransfers) {
   [connection cancel];
   [command.activeTransfers removeObjectForKey:objectId];
   // remove background id task in case our upload was done in the 
background
   [[UIApplication sharedApplication] 
endBackgroundTask:self.backgroundTaskID];
   self.backgroundTaskID = UIBackgroundTaskInvalid;
   
   [self.command.commandDelegate sendPluginResult:result 
callbackId:callbackId];
   }
   ```



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] aubrey-fowler opened a new issue #219: cordova run ios - emulator opens but app does not install - error the operation couldn’t be completed. Application “myApp” is unknown to Front

2020-06-25 Thread GitBox


aubrey-fowler opened a new issue #219:
URL: https://github.com/apache/cordova/issues/219


   I'm writing an app with Ionic v1, AngularJS 1.5 and Cordova cli v8. Last 
week I updated my Mac OS (mac os Catalina 10.15.5) and now I'm having trouble 
launching app onto my ios emulators.
   
   This is how I try to run my app: `cordova run ios --emulator`
   
   `
   cordova requirements ios
   
   Requirements check results for android:
   
   Java JDK: installed 1.8.0
   
   Android SDK: installed true
   
   Android target: installed android-28,android-26,android-19
   
   Gradle: installed /usr/local/Cellar/gradle/6.2.1/bin/gradle
   
   
   
   Requirements check results for ios:
   
   Apple macOS: installed darwin
   
   Xcode: installed 11.5
   
   ios-deploy: installed 1.10.0
   
   CocoaPods: installed 1.9.0
   
   
   ionic info
   
   [WARN] Bad integration name: gulp
   
   
   
   Ionic:
   
   
   
  Ionic CLI : 5.4.16 (/Users/aubrey/node_modules/ionic)
   
  Ionic Framework   : ionic1 1.3.5
   
  @ionic/v1-toolkit : 1.0.22
   
   
   
   Cordova:
   
   
   
  Cordova CLI   : 8.1.2 (cordova-lib@8.1.1)
   
  Cordova Platforms : android 8.1.0, ios 5.1.0
   
  Cordova Plugins   : cordova-plugin-ionic-webview 5.0.0, (and 17 other 
plugins)
   
   
   
   Utility:
   
   
   
  cordova-res : 0.15.1
   
  native-run  : 1.0.0
   
   
   
   System:
   
   
   
  Android SDK Tools : 26.1.1 (/usr/local/share/android-sdk)
   
  ios-deploy: 1.10.0
   
  ios-sim   : 8.0.2
   
  NodeJS: v10.19.0 (/usr/local/Cellar/node@10/10.19.0/bin/node)
   
  npm   : 6.13.4
   
  OS: macOS Catalina
   
   
  Xcode : Xcode 11.5 Build version 11E608c
   
   
   cordova plugins list
   
   cordova-android-support-gradle-release 3.0.1 
   "cordova-android-support-gradle-release"
   cordova-plugin-camera 4.1.0 "Camera"
   cordova-plugin-compat 1.2.0 "Compat"
   cordova-plugin-customurlscheme 5.0.1 "Custom URL scheme"
   cordova-plugin-device 2.0.3 "Device"
   cordova-plugin-file 6.0.2 "File"
   cordova-plugin-file-transfer 1.7.1 "File Transfer"
   cordova-plugin-geolocation 4.0.2 "Geolocation"
   cordova-plugin-inappbrowser 4.0.0 "InAppBrowser"
   cordova-plugin-ionic-webview 5.0.0 "cordova-plugin-ionic-webview"
   cordova-plugin-network-information 2.0.2 "Network Information"
   cordova-plugin-safariviewcontroller 1.6.0 "SafariViewController"
   cordova-plugin-save-image 0.3.0 "SaveImage"
   cordova-plugin-settings-hook 0.2.7 "Cordova Settings Hooks"
   cordova-plugin-splashscreen 5.0.4 "Splashscreen"
   cordova-plugin-statusbar 2.4.3 "StatusBar"
   cordova-plugin-whitelist 1.3.4 "Whitelist"
   cordova.plugins.diagnostic 4.0.12 "Diagnostic"
   ionic-plugin-keyboard 2.2.1 "Keyboard"
   `
   This is the error that I'm getting:
   
   `** BUILD SUCCEEDED **
   
   
   
   Deploying to simulator
   
   No target specified for emulator. Deploying to "iPhone-SE--2nd-generation-, 
13.5" simulator.
   
   Running command: 
/Users/aubrey/Documents/Repos/selfserviceapp/node_modules/ios-sim/bin/ios-sim 
launch 
/Users/aubrey/Documents/Repos/selfserviceapp/platforms/ios/build/emulator/Self 
Service.app --devicetypeid 
com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-, 13.5 --log 
/Users/aubrey/Documents/Repos/selfserviceapp/platforms/ios/cordova/console.log 
--exit
   
   [ios-sim] device.name: iPhone SE (2nd generation)
   
   [ios-sim] device.runtime: iOS 13.5
   
   device.id: 6FCCD0AD-2E43-489A-B623-4D9AAA667637
   
   [ios-sim] Simulator already running.
   
   [ios-sim] An error was encountered processing the command 
(domain=NSPOSIXErrorDomain, code=2):
   
   Failed to install the requested application
   
   An application bundle was not found at the provided path.
   
   
   Provide a valid path to the desired application bundle.
   
   
   
   [ios-sim] An error was encountered processing the command 
(domain=FBSOpenApplicationServiceErrorDomain, code=1):
   
   The request to open "com.softworks.selfservice.app" failed.
   
   The request was denied by service delegate (SBMainWorkspace) for reason: 
NotFound ("Application "com.softworks.selfservice.app" is unknown to 
FrontBoard").
   
   Underlying error (domain=FBSOpenApplicationErrorDomain, code=4):
   
   [ios-sim] The operation couldn’t be completed. Application 
"com.softworks.selfservice.app" is unknown to FrontBoard.
   
   Application "com.softworks.selfservice.app" is unknown to FrontBoard.
   
   com.softworks.selfservice.app: -1
   
   [ios-sim] logPath: 
/Users/aubrey/Documents/Repos/selfserviceapp/platforms/ios/cordova/console.log
   
   Simulator successfully started via `ios-sim`.`
   
   I tried this on a brand new project by `cordova create hello` and it does 
work for this brand new app but not for my project.
   



This is an automate

[GitHub] [cordova] timbru31 closed issue #219: cordova run ios - emulator opens but app does not install - error the operation couldn’t be completed. Application “myApp” is unknown to FrontBoard

2020-06-25 Thread GitBox


timbru31 closed issue #219:
URL: https://github.com/apache/cordova/issues/219


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 commented on issue #219: cordova run ios - emulator opens but app does not install - error the operation couldn’t be completed. Application “myApp” is unknown to FrontBoard

2020-06-25 Thread GitBox


timbru31 commented on issue #219:
URL: https://github.com/apache/cordova/issues/219#issuecomment-649464390


   This is the wrong repo. Please create an issue in apache/cordova-ios and 
**follow the issue template** - make especially sure that your code is 
formatted correctly, your issue is unreadable. Thanks!



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] barakataboujreich opened a new issue #220: cordova-ios 6.0.0 launchstoryboard white

2020-06-25 Thread GitBox


barakataboujreich opened a new issue #220:
URL: https://github.com/apache/cordova/issues/220


   hello guys,
   we recently moved to ios 6.0.0, one of the changes switch from legacy launch 
images to story board images.
   we created the images according to the dimensions given in the documentation
   [launch storyboard images at cordova 
website](https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/index.html#launch-storyboard-images)
   
   and added the following to config.xml
   
   ```
   
   
   
   
   
   
   
   
   ```
   
   then ran the following command
   
   `cordova prepare ios`
   
   opened xcode, and navigated to Images.xcassets then LaunchStoryboard and saw 
the images.
   
   then on the iphone x running ios 13.5.1 deleted the app to prevent cashing 
as mentioned.
   run the app, but all i got is a white screen and then the app continue 
normally. 
   
   i thought the problem was with photos, so i created one blue photo with 
dimensions 2732x2732
   added `` to 
config.xml and removed the others.
   
   then ran
   
   `cordova prepare ios`
   
   opened xcode, and navigated to Images.xcassets then LaunchStoryboard and saw 
the blue image and the others removed.
   
   but the same thing happened again, just white screen not my image.
   
   i deleted the app every time i needed to install.
   cleaned the build folder.
   tried on the simulator with no use.
   
   can anyone tell me what i am doing wrong ?
   cordova: 9.0.0
   cordova-ios: 9.0.0 (cordova-lib@9.0.1)
   
   device running on:
   iphone x, 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 closed issue #220: cordova-ios 6.0.0 launchstoryboard white

2020-06-25 Thread GitBox


timbru31 closed issue #220:
URL: https://github.com/apache/cordova/issues/220


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 commented on issue #220: cordova-ios 6.0.0 launchstoryboard white

2020-06-25 Thread GitBox


timbru31 commented on issue #220:
URL: https://github.com/apache/cordova/issues/220#issuecomment-649516110


   This is probably a duplicate of 
https://github.com/apache/cordova-ios/issues/890 - please update to v6.1.0 and 
try again. If the issue persists, open a new issue in 
https://github.com/apache/cordova-ios instead. Make sure to fill in the issue 
template, otherwise we can't help. Thanks!



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-device-orientation] alekslauda opened a new issue #53: Device orientation plugin migration to W3C

2020-06-26 Thread GitBox


alekslauda opened a new issue #53:
URL: https://github.com/apache/cordova-plugin-device-orientation/issues/53


   Hello,
   
   I've read the blog and how we will proceed with W3C device orientation , but 
my question is how to calculate the values provided from 
cordova-plugin-device-orientation, for example there is a logic that i've had 
in my app related to the "headingAccuracy" which is not provided from the W3C 
device orientation, so how am i going to obtain the related props?



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] EeshaRoy opened a new issue #221: Cordova-Android build fails on Azure pipeline whereas the same project work perfectly fine on local build

2020-06-30 Thread GitBox


EeshaRoy opened a new issue #221:
URL: https://github.com/apache/cordova/issues/221


   Hello Cordova build android pipeline on Azure DevOps is throwing error with 
old cordova version or latest version. But grunt build android is running 
perfectly fine on my local project.  So I believe this is some problem with new 
version of some tasks. Could you look and fix it ?
   
   Thanks,
   
   ### What is expected to happen?
   Build is supposed to finish successfully by running all scripts  the same 
project work perfectly fine on my local build
   
![image](https://user-images.githubusercontent.com/67674499/86205728-3c236b80-bb30-11ea-82d3-46b3d5f616ac.png)
   
   
   ### What does actually happen?
   
   ##[section]Starting: Cordova Build android
   2020-06-30T14:28:09.1569434Z ##[section]Starting: Cordova Build android
   2020-06-30T14:28:09.1986970Z 
==
   2020-06-30T14:28:09.1987541Z Task : Cordova Build
   2020-06-30T14:28:09.1988130Z Description  : Build a hybrid app project based 
on the Cordova CLI, Ionic CLI, TACO CLI, or other Cordova-compliant CLI
   2020-06-30T14:28:09.1988748Z Version  : 1.3.12
   2020-06-30T14:28:09.1989150Z Author   : Microsoft Corporation
   2020-06-30T14:28:09.1989715Z Help : [More 
Information](http://go.microsoft.com/fwlink/?LinkID=691186)
   2020-06-30T14:28:09.1990328Z 
==
   2020-06-30T14:28:10.0943023Z Module cache at 
C:\Users\VssAdministrator\AppData\Roaming\taco_home\node_modules
   2020-06-30T14:28:12.1530642Z Installing cordova to 
C:\Users\VssAdministrator\AppData\Roaming\taco_home\node_modules\cordova\9.0.0. 
(This may take a few minutes.)
   2020-06-30T14:28:49.8644198Z Exec complete.
   2020-06-30T14:28:49.8645079Z npm WARN using --force I sure hope you know 
what you are doing.
   2020-06-30T14:28:49.8645622Z npm WARN deprecated resolve-url@0.2.1: 
https://github.com/lydell/resolve-url#deprecated
   2020-06-30T14:28:49.8646383Z npm WARN deprecated urix@0.1.0: Please see 
https://github.com/lydell/urix#deprecated
   2020-06-30T14:28:49.8647161Z npm WARN deprecated request@2.88.2: request has 
been deprecated, see https://github.com/request/request/issues/3142
   2020-06-30T14:28:49.8648054Z npm WARN saveError ENOENT: no such file or 
directory, open 
'C:\Users\VssAdministrator\AppData\Roaming\taco_home\node_modules\cordova\9.0.0\package.json'
   2020-06-30T14:28:49.8648865Z npm notice created a lockfile as 
package-lock.json. You should commit this file.
   2020-06-30T14:28:49.8649608Z npm WARN enoent ENOENT: no such file or 
directory, open 
'C:\Users\VssAdministrator\AppData\Roaming\taco_home\node_modules\cordova\9.0.0\package.json'
   2020-06-30T14:28:49.8651538Z npm WARN 9.0.0 No description
   2020-06-30T14:28:49.8652075Z npm WARN 9.0.0 No repository field.
   2020-06-30T14:28:49.8657924Z npm WARN 9.0.0 No README data
   2020-06-30T14:28:49.8658284Z npm WARN 9.0.0 No license field.
   2020-06-30T14:28:49.8658510Z 
   2020-06-30T14:28:49.8658725Z + cordova@9.0.0
   2020-06-30T14:28:49.8660020Z added 432 packages from 355 contributors and 
audited 432 packages in 36.268s
   2020-06-30T14:28:49.8660637Z 
   2020-06-30T14:28:49.8660889Z 3 packages are looking for funding
   2020-06-30T14:28:49.8661221Z   run `npm fund` for details
   2020-06-30T14:28:49.8661418Z 
   2020-06-30T14:28:49.8661638Z found 0 vulnerabilities
   2020-06-30T14:28:49.8661824Z 
   2020-06-30T14:28:49.8661983Z 
   2020-06-30T14:28:53.1350051Z Adding ant.properties update hook
   2020-06-30T14:28:56.5720896Z Module cache at 
C:\Users\VssAdministrator\AppData\Roaming\taco_home\node_modules
   2020-06-30T14:28:58.3840929Z cordova already installed.
   2020-06-30T14:28:58.3848166Z Adding support plugin.
   2020-06-30T14:29:00.2569681Z Removing ant.properties update hook
   2020-06-30T14:29:00.2607733Z TypeError: Cannot read property 'plugin' of 
undefined
   2020-06-30T14:29:00.2608687Z at 
D:\a\_tasks\CordovaBuild_70e94267-15dc-434d-8973-023d766825d7\1.3.12\node_modules\taco-team-build\taco-team-build.js:66:37
   2020-06-30T14:29:00.2609634Z at _fulfilled 
(D:\a\_tasks\CordovaBuild_70e94267-15dc-434d-8973-023d766825d7\1.3.12\node_modules\q\q.js:854:54)
   2020-06-30T14:29:00.2610635Z at 
D:\a\_tasks\CordovaBuild_70e94267-15dc-434d-8973-023d766825d7\1.3.12\node_modules\q\q.js:883:30
   2020-06-30T14:29:00.2612386Z at Promise.promise.promiseDispatch 
(D:\a\_tasks\CordovaBuild_70e94267-15dc-434d-8973-023d766825d7\1.3.12\node_modules\q\q.js:816:13)
   2020-06-30T14:29:00.2613817Z at 
D:\a\_tasks\CordovaBuild_70e94267-15dc-434d-8973-023d766825d7\1.3.12\node_modules\q\q.js:624:44
   2020-06-30T14:29:00.2616905Z at runSingle 
(D:\a\_tasks\CordovaBuild_70e94267-15dc-434d-8973-023d766825d7\1.3.12\node_modules\q\q.js:137:13)
   2020-06-30T14:29:00.2617974Z at flush 
(D:\a\_tasks\CordovaBuild_70e9

[GitHub] [cordova] cagross opened a new issue #222: Cordova build fails if I set 'type: modules' in package.json.

2020-07-01 Thread GitBox


cagross opened a new issue #222:
URL: https://github.com/apache/cordova/issues/222


   # Bug Report
   
   ## Problem
   
   ### What is expected to happen?
   `cordova build android` completes without issue.
   
   
   ### What does actually happen?
   Build fails with the following output:
   
   $ cordova build android
   Unable to load PlatformApi from platform. Error [ERR_REQUIRE_ESM]: Must 
use import to load ES Module: 
C:\Users\snarl\my-project\platforms\android\cordova\Api.js
   require() of ES modules is not supported.
   require() of C:\Users\snarl\my-project\platforms\android\cordova\Api.js 
from 
C:\Users\snarl\AppData\Roaming\npm\node_modules\cordova\node_modules\cordova-lib\src\cordova\util.js
 is an ES module file as it is a .js file whose nearest parent package.json 
contains "type": "module" which defines all .js files in that package scope as 
ES modules.
   Instead rename Api.js to end in .cjs, change the requiring code to use 
import(), or remove "type": "module" from 
C:\Users\snarl\my-project\package.json.
   
   Unhandled error. ('The platform "android" does not appear to be a valid 
cordova platform. It is missing API.js. android not supported.')
   
   
   ## Information
   
   
   I've built a simple app, which I can build for Android (or browser) without 
issue.  I have now now implemented a simple unit test (using 
[Tape](https://github.com/substack/tape)), which runs in Node.  Since some 
files I'm testing are ES6 modules, in order to run the unit tests in Node, I 
had to add `"type": "module",` to my `package.json` file.  But when I did that, 
my app would no longer build--the Cordova build command fails with the output 
above.  Is it possible to execute the Cordova build for Android--if so, how?
   
   Or is some part of my method flawed in this case? That is certainly a 
possibility.  Maybe if I run unit tests in the browser (rather than in Node), 
this issue will be avoided?
   
   Thanks.
   
   ### Command or Code
   
   
   `cordova build android` (or `cordova build browser`)
   
   ### Environment, Platform, Device
   
   
   Platforms:  Android, Browser
   
   ### Version information
   Cordova: 9.0.0 (cordova-lib@9.0.1)
   Cordova Plugins:  cordova-plugin-file, cordova-plugin-network-information, 
cordova-plugin-whitelist
   Other Frameworks: 
   Operating System:  Windows
   
   
   
   
   ## 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 closed issue #221: Cordova-Android build fails on Azure pipeline whereas the same project work perfectly fine on local build

2020-07-01 Thread GitBox


timbru31 closed issue #221:
URL: https://github.com/apache/cordova/issues/221


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 commented on issue #221: Cordova-Android build fails on Azure pipeline whereas the same project work perfectly fine on local build

2020-07-01 Thread GitBox


timbru31 commented on issue #221:
URL: https://github.com/apache/cordova/issues/221#issuecomment-652347843


   Like Norman already said in your other issue:
   > Based on the stacktrace, the issue appears to be inside taco-team-build 
package.
   
   Unfortunately, we can't help with issues that are coming from cloud 
providers. I assume you need to seek support via Azure/taco-team-build.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] erisu closed issue #79: Add Node 12 & Drop Node 6 & 8 Support

2020-07-02 Thread GitBox


erisu closed issue #79:
URL: https://github.com/apache/cordova/issues/79


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] erisu commented on issue #79: Add Node 12 & Drop Node 6 & 8 Support

2020-07-02 Thread GitBox


erisu commented on issue #79:
URL: https://github.com/apache/cordova/issues/79#issuecomment-653317302


   Closing as complete. The important repos were completed and remaining has PRs



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] erisu opened a new issue #223: Add Node 14 Support

2020-07-02 Thread GitBox


erisu opened a new issue #223:
URL: https://github.com/apache/cordova/issues/223


   # Feature Request
   
   - Add `Node 14` Support
   
   ## Motivation Behind Feature
   
   The Node team has released Node 14 on April 21:
   
   You can read more about Node's release schedule 
[here](https://github.com/nodejs/Release).
   
   We should begin adding Node 14 support to our testing workflow to try and 
catch potential issues and resolve them if possible.
   
   **Cordova's Official Node 14 Support Announcement:** TBD
   
   ## Feature Description
   
   - [ ] Update AppVeyor, Travis CI, and GitHub Actions to include Node.js 14.x 
in the testing workflow.
   
   ## Alternatives or Workarounds
   
   - Undefined
   
   ## Implementation Progress
   
   ### Platforms
   
   - [ ] cordova-android
   - [ ] cordova-browser
   - [ ] cordova-electron
   - [ ] cordova-ios
   - [ ] cordova-osx
   - [ ] cordova-windows
   
   ### Plugins
   
   - [ ] cordova-plugin-battery-status
   - [ ] cordova-plugin-camera
   - [ ] cordova-plugin-device
   - [ ] cordova-plugin-dialogs
   - [ ] cordova-plugin-file
   - [ ] cordova-plugin-geolocation
   - [ ] cordova-plugin-inappbrowser
   - [ ] cordova-plugin-media
   - [ ] cordova-plugin-media-capture
   - [ ] cordova-plugin-network-information
   - [ ] cordova-plugin-screen-orientation
   - [ ] cordova-plugin-splashscreen
   - [ ] cordova-plugin-statusbar
   - [ ] cordova-plugin-vibration
   - [ ] cordova-plugin-whitelist
   - [ ] cordova-plugin-wkwebview-engine
   
   ### Tooling
   
   - [ ] cordova-cli
   - [ ] cordova-coho
   - [ ] cordova-common
   - [ ] cordova-create
   - [ ] cordova-fetch
   - [ ] cordova-js
   - [ ] cordova-lib
   - [ ] cordova-node-xcode
   - [ ] cordova-paramedic
   - [ ] cordova-plugin-test-framework
   - [ ] cordova-plugman
   - [ ] cordova-serve
   
   _Low Priority & Non-blocker:_
   - [ ] cordova-docs
   
   _Excluded:_ 
   * `cordova-app-hello-world`
   * `cordova-test-platform`
   * `cordova-mobile-spec`
   * `cordova-status`
   * `cordova`
   * any unused, outdated, or deprecated repos



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 opened a new issue #224: Update CONTRIBUTING.md document across our repositories

2020-07-06 Thread GitBox


timbru31 opened a new issue #224:
URL: https://github.com/apache/cordova/issues/224


   ## Description
   
   We have updated our `CONTRIBUTING.md` document in 
https://github.com/apache/cordova-contribute/pull/37. Those changes need to be 
added to our other repositories, too:
   
   ## Implementation Progress
   
   ### Platforms
   
   - [ ] cordova-android
   - [ ] cordova-browser
   - [ ] cordova-electron
   - [ ] cordova-ios
   - [ ] cordova-osx
   - [ ] cordova-test-platform
   - [ ] cordova-windows
   
   ### Plugins
   
   - [ ] cordova-plugin-battery-status
   - [ ] cordova-plugin-camera
   - [ ] cordova-plugin-device
   - [ ] cordova-plugin-dialogs
   - [ ] cordova-plugin-file
   - [ ] cordova-plugin-geolocation
   - [ ] cordova-plugin-inappbrowser
   - [ ] cordova-plugin-media
   - [ ] cordova-plugin-media-capture
   - [ ] cordova-plugin-network-information
   - [ ] cordova-plugin-screen-orientation
   - [ ] cordova-plugin-splashscreen
   - [ ] cordova-plugin-statusbar
   - [ ] cordova-plugin-vibration
   - [ ] cordova-plugin-whitelist
   - [ ] cordova-plugin-wkwebview-engine
   
   ### Tooling
   
   - [ ] cordova-cli
   - [ ] cordova-coho
   - [ ] cordova-common
   - [ ] cordova-create
   - [ ] cordova-docs
   - [ ] cordova-fetch
   - [ ] cordova-js
   - [ ] cordova-lib
   - [ ] cordova-mobile-spec
   - [ ] cordova-node-xcode
   - [ ] cordova-paramedic
   - [ ] cordova-plugin-test-framework
   - [ ] cordova-plugman
   - [ ] cordova-serve
   
   ### Misc
   
   - [ ] cordova
   - [ ] cordova-app-hello-world
   
   **Excluded:**
   - cordova-status
   
   and any unused, outdated, or deprecated repos.
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-contribute] timbru31 commented on pull request #37: doc: add & update required core repo files

2020-07-06 Thread GitBox


timbru31 commented on pull request #37:
URL: https://github.com/apache/cordova-contribute/pull/37#issuecomment-654120011


   I've created https://github.com/apache/cordova/issues/224, I think we are 
good to merge this one now.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] fattanasio opened a new issue #225: Can't access to FILE_URI of camera.getPicture Cordova IOS 6 and wkwebview

2020-07-07 Thread GitBox


fattanasio opened a new issue #225:
URL: https://github.com/apache/cordova/issues/225


   I created a new standard with ios 6 to avoid rejecting the app from Apple.
   In the config.xml I entered:
   
   
   to be able to navigate in my application.
   When I call the camera plugin:
   
   `navigator.camera.getPicture(function(fileURI) {
previewFoto(fileURI, id);
}, function(error) {
captureFotoError(error, id);
},
{
quality: 20, 
sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY,
mediaType: navigator.camera.MediaType.PICTURE,
destinationType: navigator.camera.DestinationType.FILE_URI 
}
   );
   
   function previewFoto(fileURI,id){
   var thumbnailPhoto = document.getElementById('thumbnailPhoto_'+id);
   $("#thumbnailPhoto_"+id).addClass("thumbnail");
   thumbnailPhoto.src=fileURI;
   }
   `
   I can't see the preview. Before installing cordova ios 6 and therefore also 
wkwebview the application worked correctly. 
   Now I think there is a problem of link to the uri file of type file: 
//etc/tmp/filename.jpg
   I have searched all the forums but I cannot understand how to point to a 
camera file directly in my app.
   I have cordova ios 6.1.0 and latest cordova-plugin-camera
   
   Do you have any suggestions ?
   Thanks so much !
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] fattanasio opened a new issue #226: Can't access to file photolibrary with cordova ios 6.1.0 and wkwebview

2020-07-07 Thread GitBox


fattanasio opened a new issue #226:
URL: https://github.com/apache/cordova/issues/226


   # Bug Report
   
   ## Problem
   I created a new standard with ios 6 to avoid rejecting the app from Apple.
   In the config.xml I entered:
   
   
   to be able to navigate in my application.
   When I call the camera plugin:
   
   `navigator.camera.getPicture(function(fileURI) {
previewFoto(fileURI, id);
}, function(error) {
captureFotoError(error, id);
},
{
quality: 20, 
sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY,
mediaType: navigator.camera.MediaType.PICTURE,
destinationType: navigator.camera.DestinationType.FILE_URI 
}
   );
   
   function previewFoto(fileURI,id){
   var thumbnailPhoto = document.getElementById('thumbnailPhoto_'+id);
   $("#thumbnailPhoto_"+id).addClass("thumbnail");
   thumbnailPhoto.src=fileURI;
   }
   `
   I can't see the preview. Before installing cordova ios 6 and therefore also 
wkwebview the application worked correctly. 
   Now I think there is a problem of link to the uri file of type file: 
//etc/tmp/filename.jpg
   I have searched all the forums but I cannot understand how to point to a 
camera file directly in my app.
   I have cordova ios 6.1.0 and latest cordova-plugin-camera
   
   Do you have any suggestions ?
   Thanks so much !
   
   
   ### What is expected to happen?
   Preview of image retrieved by camera plugin
   
   
   ### What does actually happen?
   Preview is blank image. Probably error access to file://etc./tmp/file
   
   
   ## Information
   
   
   
   
   ### Command or Code
   `navigator.camera.getPicture(function(fileURI) {
previewFoto(fileURI, id);
}, function(error) {
captureFotoError(error, id);
},
{
quality: 20, 
sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY,
mediaType: navigator.camera.MediaType.PICTURE,
destinationType: navigator.camera.DestinationType.FILE_URI 
}
   );
   
   function previewFoto(fileURI,id){
   var thumbnailPhoto = document.getElementById('thumbnailPhoto_'+id);
   $("#thumbnailPhoto_"+id).addClass("thumbnail");
   thumbnailPhoto.src=fileURI;
   }
   `
   
   
   ### Environment, Platform, Device
   The problem occurs on device IOS and on simulator xcode
   
   
   ### Version information
   CORDOVA IOS 6.1.0
   Cordova CLI version 9.0
   
   
   ## 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 closed issue #225: Can't access to FILE_URI of camera.getPicture Cordova IOS 6 and wkwebview

2020-07-07 Thread GitBox


timbru31 closed issue #225:
URL: https://github.com/apache/cordova/issues/225


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] ashishkumar2804 opened a new issue #227: App Stuck on Splash screen

2020-07-10 Thread GitBox


ashishkumar2804 opened a new issue #227:
URL: https://github.com/apache/cordova/issues/227


   # Bug Report
   
   ## App is tuck on Splash screen/launch screen post updating to cordova ios 
platform 6.1. When checked through safari, even device ready event is not 
triggered.
   
   ### What is expected to happen?
   App should launch with device ready event triggering and launch screen 
disappearing
   
   
   ### What does actually happen?
   App is stuck on launch screen
   
   
   ## Information
   No error is displayed on the Xcode console.
   
   
   
   ### Command or Code
   
   
   
   
   ### Environment, Platform, Device
   IPad 13 device using xcode 11 and cordova 6.1.0
   
   
   
   ### Version information
   
   
   
   
   ## 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] nunoarruda opened a new issue #228: Why is cordova.js interfering with ng5-slider?

2020-07-13 Thread GitBox


nunoarruda opened a new issue #228:
URL: https://github.com/apache/cordova/issues/228


   # Bug Report
   
   ## Problem
   cordova.js is interfering with ng5-slider
   
   ### What is expected to happen?
   ng5-slider to behave as expected
   
   
   ### What does actually happen?
   ng5-slider behaves strangely when using cordova.js
   
   
   ## Information
   
   
![ng5-slider-cordova-issue](https://user-images.githubusercontent.com/1189149/87331142-10898380-c529-11ea-8280-d713455e19c7.gif)
   
   I've opened a similar issue on the ng5-slider repository: 
https://github.com/angular-slider/ng5-slider/issues/198
   
   ### Command or Code
   
   Repository to reproduce the issue: 
https://github.com/nunoarruda/ng5-slider-cordova
   
   
   ### Environment, Platform, Device
   
   macOS, Google Chrome, browser platform
   
   
   ### Version information
   
   Cordova 9.0.0
   Angular 10
   macOS
   
   
   ## 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek commented on issue #228: Why is cordova.js interfering with ng5-slider?

2020-07-13 Thread GitBox


breautek commented on issue #228:
URL: https://github.com/apache/cordova/issues/228#issuecomment-657683926


   Is it possible to include unminimized code in the reproduction repo?



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] sdkester commented on issue #260: Timeouts after downloading a lot of files (iOS)

2020-07-13 Thread GitBox


sdkester commented on issue #260:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/260#issuecomment-657851500


   @elvisgraho We removed the cached response to improve the memory usage when 
transferring a lot of files.
   
   ```objc
   CDVFileTransferDelegate* currentDelegate = command.activeTransfers[objectId];
   [[NSURLCache sharedURLCache] 
removeCachedResponseForRequest:currentDelegate.connection.currentRequest];
   ```



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] nunoarruda commented on issue #228: Why is cordova.js interfering with ng5-slider?

2020-07-14 Thread GitBox


nunoarruda commented on issue #228:
URL: https://github.com/apache/cordova/issues/228#issuecomment-658172276


   @breautek I've just done that. Thanks for trying to help!



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] akshukla07 opened a new issue #261: Build fails for cordova-ios 6.1.0 with this plugin

2020-07-15 Thread GitBox


akshukla07 opened a new issue #261:
URL: https://github.com/apache/cordova-plugin-file-transfer/issues/261


   # Bug Report
   Unable to create build after updating to cordova-ios 6.1.0
   
   ## Problem
   After updating to cordova-ios 6.1.0, I added the ios platform and tried 
created build with `ionic cordova build ios` command. This gives the following 
error:
   
   `warning: Could not read serialized diagnostics file: Cannot Load File: 
Failed to open diagnostics file (in target 'APPNAME' from project 'APPNAME')
   
   ** ARCHIVE FAILED **
   
   
   The following build commands failed:
CompileC 
/Users/akhilesh/Library/Developer/Xcode/DerivedData/APPNAME-bjbhutjdzzhywsgeqawthgfleslm/Build/Intermediates.noindex/ArchiveIntermediates/APPNAME/IntermediateBuildFilesPath/APPNAME.build/Debug-iphoneos/APPNAME.build/Objects-normal/arm64/CDVFileTransfer.o
 
/Users/akhilesh/github/app-folder/platforms/ios/APPNAME/Plugins/cordova-plugin-file-transfer/CDVFileTransfer.m
 normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
   (1 failure)
   xcodebuild: Command failed with exit code 65
   [ERROR] An error occurred while running subprocess cordova.
   
   cordova build ios exited with exit code 65`
   
   ### What is expected to happen?
   The build process should complete without errors. When I remove this plugin, 
the app builds successfully.
   
   
   ### What does actually happen?
   The build process throws error and exits.
   
   `warning: Could not read serialized diagnostics file: Cannot Load File: 
Failed to open diagnostics file (in target 'APPNAME' from project 'APPNAME')
   
   ** ARCHIVE FAILED **
   
   
   The following build commands failed:
CompileC 
/Users/akhilesh/Library/Developer/Xcode/DerivedData/APPNAME-bjbhutjdzzhywsgeqawthgfleslm/Build/Intermediates.noindex/ArchiveIntermediates/APPNAME/IntermediateBuildFilesPath/APPNAME.build/Debug-iphoneos/APPNAME.build/Objects-normal/arm64/CDVFileTransfer.o
 
/Users/akhilesh/github/app-folder/platforms/ios/APPNAME/Plugins/cordova-plugin-file-transfer/CDVFileTransfer.m
 normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
   (1 failure)
   xcodebuild: Command failed with exit code 65
   [ERROR] An error occurred while running subprocess cordova.
   
   cordova build ios exited with exit code 65`
   
   ## Information
   The build process works fine if I remove the plugin. The issue only arises 
when this plugin is added.
   
   ### Command or Code
   - Create an ionic 3 project.
   - Add cordova-plugin-file-transfer: `ionic cordova plugin add 
cordova-plugin-file-transfer`
   - Add cordova-ios@6.1.0: `ionic cordova platform add ios@6.1.0`
   - Create build: `ionic cordova build ios`
   
   ### Environment, Platform, Device
   Environment: Mac OS Catalina v10.15.5 (19F101) on MacBook Pro (Retina, 
15-inch, Early 2013)
   Platform: iOS 11.0 and above
   Device: Creating build for iPhone 
   
   
   ### Version information
   Ionic:
   
  Ionic CLI  : 5.4.16
  Ionic Framework: ionic-angular 3.9.2
  @ionic/app-scripts : 3.2.4
   
   Cordova:
   
  Cordova CLI   : 8.1.2 (cordova-lib@8.1.1)
  Cordova Platforms : android 8.1.0, ios 6.1.0
  Cordova Plugins   : cordova-plugin-ionic-keyboard 2.2.0, 
cordova-plugin-ionic-webview 4.2.1, (and 25 other plugins)
   
   Utility:
   
  cordova-res (update available: 0.15.1) : 0.10.0
  native-run (update available: 1.0.0)   : 0.2.9
   
   System:
   
  Android SDK Tools : 26.1.1 (/Users/akhilesh/Library/Android/sdk)
  ios-deploy: 1.9.4
  ios-sim   : 8.0.2
  NodeJS: v10.16.3 (/usr/local/Cellar/node@10/10.16.3/bin/node)
  npm   : 6.9.0
  OS: macOS Catalina
  Xcode : Xcode 11.5 Build version 11E608c
   
   ## Checklist
   
   
   - [x] I searched for existing GitHub issues
   - [ ] 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] timbru31 closed issue #261: Build fails for cordova-ios 6.1.0 with this plugin

2020-07-15 Thread GitBox


timbru31 closed issue #261:
URL: https://github.com/apache/cordova-plugin-file-transfer/issues/261


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] timbru31 commented on issue #261: Build fails for cordova-ios 6.1.0 with this plugin

2020-07-15 Thread GitBox


timbru31 commented on issue #261:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/261#issuecomment-658785702


   Duplicate of #258. Please note that this plugin is deprecated since 2017 and 
it's unlikely to receive a new update. 



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] rookieleader opened a new issue #229: Can't set minSdkVersion when building for Android 9.0.0

2020-07-16 Thread GitBox


rookieleader opened a new issue #229:
URL: https://github.com/apache/cordova/issues/229


   
   
   ### Issue Type
   
   
   - [x] Bug Report
   - [ ] Feature Request
   - [ ] Support Question
   
   ## Description
   When trying to build debug release for android 9.0.0 it fails with a 
minSdkVersion message set to 21 where 22 minimum is expected although I tried 
almost all possible way to set it to 22 or above (Gradle.properties, 
Androidmanifest.xml, config xml, etc...)
   
   ## Information
   Error when building :
   
   ```> Task :app:processDebugManifest FAILED
   /app/logistique/platforms/android/app/src/main/AndroidManifest.xml Error:
   uses-sdk:minSdkVersion 21 cannot be smaller than version 22 declared 
in library [:CordovaLib] 
/app/logistique/platforms/android/CordovaLib/build/intermediates/library_manifest/debug/AndroidManifest.xml
 as the library might be using APIs not available in 21
   Suggestion: use a compatible library with a minSdk of at most 21,
   or increase this project's minSdk version to at least 22,
   or use tools:overrideLibrary="org.apache.cordova" to force 
usage (may lead to runtime failures)
   
   See http://g.co/androidstudio/manifest-merger for more information about the 
manifest merger.
   
   
   FAILURE: Build failed with an exception.
   
   * What went wrong:
   Execution failed for task ':app:processDebugManifest'.
   > Manifest merger failed : uses-sdk:minSdkVersion 21 cannot be smaller than 
version 22 declared in library [:CordovaLib] 
/app/logistique/platforms/android/CordovaLib/build/intermediates/library_manifest/debug/AndroidManifest.xml
 as the library might be using APIs not available in 21
   Suggestion: use a compatible library with a minSdk of at most 21,
   or increase this project's minSdk version to at least 22,
   or use tools:overrideLibrary="org.apache.cordova" to force 
usage (may lead to runtime failures)
   
   * Try:
   Run with --stacktrace option to get the stack trace. Run with --info or 
--debug option to get more log output. Run with --scan to get full insights.
   
   * Get more help at https://help.gradle.org
   
   BUILD FAILED in 23s
   13 actionable tasks: 13 executed
   ```
   
   ```
   
   http://schemas.android.com/apk/res/android";
   package="org.apache.cordova"
   android:versionCode="1"
   android:versionName="1.0" >
   
   
   
   
   ```
   
   ### Command or Code
   Cordova build
   
   ### Environment, Platform, Device
   Build for android@9.0.0
   
   
   
   ### Version information
   
   root@519c32a54a05:/app/logistique# cordova --version
   9.0.0 (cordova-lib@9.0.1)
   root@519c32a54a05:/app/logistique# cat /etc/os-release
   NAME="Ubuntu"
   VERSION="18.04.4 LTS (Bionic Beaver)"
   ...
   (OpenJDK)
   root@519c32a54a05:/app/logistique# javac -version
   javac 1.8.0_252
   root@519c32a54a05:/app/logistique# node --version
   v12.16.1
   
   
   ## Checklist
   
   
   - [x] I searched for already existing GitHub issues about this
   - [x] I updated all Cordova tooling to their 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek commented on issue #229: Can't set minSdkVersion when building for Android 9.0.0

2020-07-16 Thread GitBox


breautek commented on issue #229:
URL: https://github.com/apache/cordova/issues/229#issuecomment-659435534


   Cordova does not support API 21 (Android 5.0), so cordova-android@9 is min 
is set to 22, including at the framework level. This is why you're seeing a min 
SDK conflict, it's letting you know that another library that you are using has 
a higher min sdk, so that library may not work properly on anything lower.
   
   If you must support API 21, you can do so by using the `` tag 
to add what is mentioned in the error. However a little disclaimer... This puts 
your configuration into an unsupported state. It may work, but it may break in 
the future without warning and only when the app reaches attempts to execute 
the problematic code resulting in a hard crash. It will be up to you to test 
your app thoroughly on API 21.
   
   An untested example should look something like:
   
   ```
   
   
   
   
   ```
   
   Docs for `` can be found at 
https://cordova.apache.org/docs/en/latest/plugin_ref/spec.html#edit-config
   
   Since this isn't a bug, I'll be closing this ticket. You're invited to our 
[slack](http://slack.cordova.io/) if you require more assistance on this.
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek closed issue #229: Can't set minSdkVersion when building for Android 9.0.0

2020-07-16 Thread GitBox


breautek closed issue #229:
URL: https://github.com/apache/cordova/issues/229


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] HansKrywaa commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-07-16 Thread GitBox


HansKrywaa commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-659905124


   I switched to use [this 
Fork](https://github.com/dpa99c/cordova-plugin-file-transfer)



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-contacts] basitraza339 opened a new issue #224: App crashed

2020-07-17 Thread GitBox


basitraza339 opened a new issue #224:
URL: https://github.com/apache/cordova-plugin-contacts/issues/224


   This plugin crashed app android version 8 but contact is save correctly.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-contacts] vmdominguez-usaa opened a new issue #225: Possible deadlock in iOS queue management code

2020-07-21 Thread GitBox


vmdominguez-usaa opened a new issue #225:
URL: https://github.com/apache/cordova-plugin-contacts/issues/225


   
   
   ### Issue Type
   
   
   - [x] Bug Report
   - [ ] Feature Request
   - [ ] Support Question
   
   ## Description
   While performing regression testing with the iOS 14 beta, I discovered that 
my app would crash when attempting to remove a contact. After doing some 
digging, it appears to be caused by potentially unnecessary calls 
`dispatch_sync`.
   
   ## Information
   
   While troubleshooting, I came upon [this StackOverflow 
answer](https://stackoverflow.com/a/10998307), which indicates that calling 
`dispatch_sync` targeting the current queue is a no-no. Through debugging my 
app, I discovered that this is indeed the scenario under which my app was 
crashing. It does not appear to crash on devices with iOS 13.
   
   I believe I confirmed the source of the problem by changing the code in 
`CDVContacts.m` (`createAddressBook`) from
   ```objc
   dispatch_sync(dispatch_get_main_queue(), ^{
   if (error) {
   workerBlock(NULL, [[CDVAddressBookAccessError alloc] 
initWithCode:UNKNOWN_ERROR]);
   } else if (!granted) {
   workerBlock(NULL, [[CDVAddressBookAccessError alloc] 
initWithCode:PERMISSION_DENIED_ERROR]);
   } else {
   // access granted
   workerBlock(addressBook, [[CDVAddressBookAccessError 
alloc] initWithCode:UNKNOWN_ERROR]);
   }
   });
   ```
   to
   ```objc
   dispatch_block_t onMain = ^{
   if (error) {
   workerBlock(NULL, [[CDVAddressBookAccessError alloc] 
initWithCode:UNKNOWN_ERROR]);
   } else if (!granted) {
   workerBlock(NULL, [[CDVAddressBookAccessError alloc] 
initWithCode:PERMISSION_DENIED_ERROR]);
   } else {
   // access granted
   workerBlock(addressBook, [[CDVAddressBookAccessError alloc] 
initWithCode:UNKNOWN_ERROR]);
   }
   };
   
   if ([NSThread isMainThread]) {
   onMain();
   } else {
   // callback can occur in background, address book must be 
accessed on thread it was created on
   dispatch_sync(dispatch_get_main_queue(), onMain);
   }
   ```
   After I made this change locally and re-ran the app, the contact was 
successfully removed.
   
   ### Command or Code
   
   `Contact.remove` from @ionic-native/contacts
   
   ### Environment, Platform, Device
   
   crashed on iPad Pro: iPadOS 14 beta 2
   did not crash on iPhoone XS iOS 13.6
   
   
   ### Version information
   
   Cordova: 9
   cordova-ios: 5.1.1
   cordova-plugin-contacts: 3.0.1
   Ionic: 3
   @ionic-native/contacts: 4.1.0
   
   
   ## Checklist
   
   
   - [x] I searched for already existing GitHub issues about this
   - [ ] I updated all Cordova tooling to their most recent version (this is an 
enterprise app for my employer -- our app stack is outdated)
   - [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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] Lyfei commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-07-22 Thread GitBox


Lyfei commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-662780423


   > By removing lines 107-110 from CDVFileTransfer.m I was able to compile:
   > 
   > ```
   > NSString* userAgent = [self.commandDelegate userAgent];
   > if (userAgent) {
   > [req setValue:userAgent forHTTPHeaderField:@"User-Agent"];
   > }
   > ```
   
   After deleting, my network request will not succeed. It seems that userAgent 
is needed



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] kt-at-cbx opened a new issue #262: Can I not provide a file name when downloading?

2020-07-22 Thread GitBox


kt-at-cbx opened a new issue #262:
URL: https://github.com/apache/cordova-plugin-file-transfer/issues/262


   
   
   I am using FileTransfer plugin to download a file. But I want to keep the 
original filename of the file but not a one I assigned. Can I keep the original 
file name when downloading it?
   
   ie. I don’t want to change `'file.pdf'` manually in below code:
   
   `fileTransfer.download(url, this.file.dataDirectory + 'file.pdf')`
   
   Thanks
   
   PS. My url will not contain any file name (will be something like: 
`https://example.com/?sp=r&st=2020-07-22&sig=&srt=o&ss=b` ) so it 
is quite not possible to get the filename from the url. But if open the link in 
browser, I can download it with a meaningful filename.
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] timbru31 commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-07-23 Thread GitBox


timbru31 commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-662907931


   I've created a thread on the dev mailing list to **discuss** the matter with 
this plugin. It would help us PMC members to understand the reasons why you 
rely on the plugin (too) and especially the reasons why you can't migrate to 
the proposed XHR/fetch alternative.
   
   
https://lists.apache.org/thread.html/r4f85264a457ca57301cea226310f920b7f08e5657924a89899ab2b58%40%3Cdev.cordova.apache.org%3E



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] rjober commented on issue #217: Deprecation warnings

2020-07-23 Thread GitBox


rjober commented on issue #217:
URL: https://github.com/apache/cordova/issues/217#issuecomment-662980380


   having same issue



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek edited a comment on issue #217: Deprecation warnings

2020-07-23 Thread GitBox


breautek edited a comment on issue #217:
URL: https://github.com/apache/cordova/issues/217#issuecomment-644148038


   ### urix
   
   ```
   npm-why urix
   
 Who required urix:
   
 cordova > cordova-lib > globby > fast-glob > micromatch > braces > 
snapdragon > source-map-resolve > urix@0.1.0
 cordova > cordova-lib > globby > fast-glob > micromatch > extglob > 
expand-brackets > snapdragon > source-map-resolve > urix@0.1.0
 cordova > cordova-lib > globby > fast-glob > micromatch > extglob > 
snapdragon > source-map-resolve > urix@0.1.0
 cordova > cordova-lib > globby > fast-glob > micromatch > nanomatch > 
snapdragon > source-map-resolve > urix@0.1.0
 cordova > cordova-lib > globby > fast-glob > micromatch > snapdragon > 
source-map-resolve > urix@0.1.0
   ```
   
   ### resolve-url
   
   ```
   npm-why resolve-url
   
 Who required resolve-url:
   
 cordova > cordova-lib > globby > fast-glob > micromatch > braces > 
snapdragon > source-map-resolve > resolve-url@0.2.1
 cordova > cordova-lib > globby > fast-glob > micromatch > extglob > 
expand-brackets > snapdragon > source-map-resolve > resolve-url@0.2.1
 cordova > cordova-lib > globby > fast-glob > micromatch > extglob > 
snapdragon > source-map-resolve > resolve-url@0.2.1
 cordova > cordova-lib > globby > fast-glob > micromatch > nanomatch > 
snapdragon > source-map-resolve > resolve-url@0.2.1
 cordova > cordova-lib > globby > fast-glob > micromatch > snapdragon > 
source-map-resolve > resolve-url@0.2.1
   ```
   
   ### request
   
   ```
   npm-why request
   
 Who required request:
   
 cordova > insight > request@2.88.2
   ```
   
   Several packages needs to be updated that is outside of our control, so it 
may take awhile before these deprecation packages is resolved.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 closed issue #217: Deprecation warnings

2020-07-23 Thread GitBox


timbru31 closed issue #217:
URL: https://github.com/apache/cordova/issues/217


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 commented on issue #217: Deprecation warnings

2020-07-23 Thread GitBox


timbru31 commented on issue #217:
URL: https://github.com/apache/cordova/issues/217#issuecomment-662985683


   I'm not getting any deprecations besides request. The correct place to ask 
is [here](https://github.com/yeoman/insight/issues/52), because we depend on 
insight and can't change the request dependency.
   
   Further issues should also be opened directly at 
https://github.com/apache/cordova-lib or https://github.com/apache/cordova-cli



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] timbru31 edited a comment on issue #217: Deprecation warnings

2020-07-23 Thread GitBox


timbru31 edited a comment on issue #217:
URL: https://github.com/apache/cordova/issues/217#issuecomment-662985683


   I'm not getting any deprecations besides `request`. The correct place to ask 
is [here](https://github.com/yeoman/insight/issues/52), because we depend on 
`insight` and can't change the `request` dependency.
   
   Further issues should also be opened directly at 
https://github.com/apache/cordova-lib or https://github.com/apache/cordova-cli



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] HarelM commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-07-26 Thread GitBox


HarelM commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-663985973


   @timbru31 I have the same issue as @alssl-ross describes.
   I have a few lerge files that I need to download from my server nd save to 
the file system - total size of the files is 500Mb. Each file is between 100Mb 
and 300Mb. I can't split those files into smaller files because they are sqlite 
database files and splitting them would be a headache.
   When I download them using angular/ionic http client the file is loaded into 
memory before I can store it in the file system using the file-plugin.
   In some cases, specifically on iOS, this causes a "white screen of death".
   Somewhat related to this issue (see my comment at the end) 
   https://github.com/apache/cordova-plugin-file/issues/364
   When all I want to do is download a file and store it somewhere in the 
application folders there's a problem in iOS and sometimes it fails when not 
using this plugin.
   I think the problem is related to how much memory is used by the webview, 
not sure though...
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] HarelM edited a comment on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-07-26 Thread GitBox


HarelM edited a comment on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-663985973


   @timbru31 I have the same issue as @alssl-ross describes.
   I have a few lerge files that I need to download from my server and save to 
the file system - total size of the files is 500Mb. Each file is between 100Mb 
and 300Mb. I can't split those files into smaller files because they are sqlite 
database files and splitting them would be a headache.
   When I download them using angular/ionic http client the file is loaded into 
memory before I can store it in the file system using the file-plugin.
   In some cases, specifically on iOS, this causes a "white screen of death".
   Somewhat related to this issue (see my comment at the end) 
   https://github.com/apache/cordova-plugin-file/issues/364
   When all I want to do is download a file and store it somewhere in the 
application folders there's a problem in iOS and sometimes it fails when not 
using this plugin.
   I think the problem is related to how much memory is used by the webview, 
not sure though...
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] timbru31 commented on issue #258: No known instance method for selector 'userAgent' in CDVFileTransfer.m

2020-07-26 Thread GitBox


timbru31 commented on issue #258:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/258#issuecomment-663996072


   @HarelM could you please share this insight with the dev mailing list as 
requested? I'm pretty sure not all active PMC members and committers are 
watching this issue.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] eyganeshv opened a new issue #264: userAgent method is missing in Cordova-ios 6.0.0

2020-08-04 Thread GitBox


eyganeshv opened a new issue #264:
URL: https://github.com/apache/cordova-plugin-file-transfer/issues/264


   # Bug Report
   'userAgent' method is missing in Cordova-ios 6.0.0 and 6.1.0 version. 
   
   ## Problem
   
   ### What is expected to happen?
   'userAgent' method is support both cordova-ios 5.0.0 and 51.0 version.
   
   
   ### What does actually happen?
   shows a red warning message "No known instance method for selector 
'userAgent'" in applyRequestHeaders method.
   
   
   
   ## Information
   
   At present UIWebView is no more.  WKWebview is supporting the latest version 
only like Cordova 6.0.0 above version. So we cant back the old Cordova-ios 
version. Kindly fix this issue for the same latest Cordova-ios version.
 
   ### Command or Code
   
   `NSString* userAgent = [self.commandDelegate userAgent];`
   
   
   ### Environment, Platform, Device
   
   
   
   
   ### Version information
   cordova-plugin-file-transfer 1.7.2-dev "File Transfer"
   Cordova 9.0.0
   Cordova-ios 6.0.0
   XCode 11.5
   Mac OS Catalina
   
   
   
   
   ## Checklist
   
   
   - [ ] I searched for existing GitHub issues
   - [ ] I updated all Cordova tooling to most recent version
   - [ ] 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] timbru31 closed issue #264: userAgent method is missing in Cordova-ios 6.0.0

2020-08-04 Thread GitBox


timbru31 closed issue #264:
URL: https://github.com/apache/cordova-plugin-file-transfer/issues/264


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] timbru31 commented on issue #264: userAgent method is missing in Cordova-ios 6.0.0

2020-08-04 Thread GitBox


timbru31 commented on issue #264:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/264#issuecomment-668499002


   Duplicate of #258 



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] ajaypillay opened a new issue #230: Update Cordova docs for minimum supported Xcode version

2020-08-04 Thread GitBox


ajaypillay opened a new issue #230:
URL: https://github.com/apache/cordova/issues/230


   This 
[page](https://cordova.apache.org/docs/en/latest/guide/platforms/ios/index.html#requirements-and-support)
 states that the minimum Xcode version is 8.0 which runs on OS X El Capitan.
   
   However, I am building an application in Meteor with Cordova bundled in and 
I get an error upon compiling stating:
   `✗ Xcode: Cordova needs xcodebuild version 9.0.0 or greater, you have version
 8.2. Please install version 9.0.0 or greater from App Store
   `
   I am running mac OS 10.11.6. Thanks.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek commented on issue #230: Update Cordova docs for minimum supported Xcode version

2020-08-04 Thread GitBox


breautek commented on issue #230:
URL: https://github.com/apache/cordova/issues/230#issuecomment-668725541


   I agree the page should be updated, PR is welcome. The minimum required 
xcode is now Xcode 11, which is an apple requirement, not necessary a Cordova 
requirement.
   
   Also note that Apple doesn't support El Capitan, you'll need to update your 
Mac OS to gain access to the latest xcode. If you don't have Mac OS update 
available, it's because you're using a mac model deemed vintage by Apple and 
they've been cut off from updates. Their last last cutoff was 2012-2015 devices 
(depending on whether they are iMacs, or MacBooks, etc). This essentially means 
that you need to buy a newer mac computer.
   
   [See supported Mac hardware for 
Catalina](https://support.apple.com/en-ca/HT210222)



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek closed issue #145: HomeKit is not working with Cordova Plugin in release mode

2020-08-04 Thread GitBox


breautek closed issue #145:
URL: https://github.com/apache/cordova/issues/145


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek commented on issue #145: HomeKit is not working with Cordova Plugin in release mode

2020-08-04 Thread GitBox


breautek commented on issue #145:
URL: https://github.com/apache/cordova/issues/145#issuecomment-668887869


   Closing due to lack of response.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek closed issue #144: cannot access iframe content from another domain, XHR empty response text, access origin * and navigation * no longer functions properly

2020-08-04 Thread GitBox


breautek closed issue #144:
URL: https://github.com/apache/cordova/issues/144


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek commented on issue #144: cannot access iframe content from another domain, XHR empty response text, access origin * and navigation * no longer functions properly

2020-08-04 Thread GitBox


breautek commented on issue #144:
URL: https://github.com/apache/cordova/issues/144#issuecomment-66808


   CORS protocol is not something that can be disabled at this time. You'll 
need to ask Google to provide and API to disable CORs.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek commented on issue #123: [Plugins] Convert to eslint

2020-08-04 Thread GitBox


breautek commented on issue #123:
URL: https://github.com/apache/cordova/issues/123#issuecomment-668889336


   Closing in favour of a much more progressed tracking ticket at 
https://github.com/apache/cordova/issues/142



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] breautek closed issue #123: [Plugins] Convert to eslint

2020-08-04 Thread GitBox


breautek closed issue #123:
URL: https://github.com/apache/cordova/issues/123


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] anshu300 opened a new issue #265: build fail in ios

2020-08-05 Thread GitBox


anshu300 opened a new issue #265:
URL: https://github.com/apache/cordova-plugin-file-transfer/issues/265


   he following build commands failed: 
/Users/RK/Documents/IONIC/ionic/wema-test/platforms/ios/wemalife-app/Plugins/cordova-plugin-file-transfer/CDVFileTransfer.m
 normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
   
   “@ionic-native/file-transfer”: “^5.27.0”,
   
   “cordova-plugin-file-transfer”: “^1.7.1”,
   
   build fail in ios
   
   Ionic:
   
   Ionic CLI : 5.4.16 (/usr/local/lib/node_modules/ionic) Ionic Framework : 
ionic-angular 3.9.2 @ionic/app-scripts : 3.2.4
   
   Cordova:
   
   Cordova CLI : 10.0.0 Cordova Platforms : ios 6.1.0 Cordova Plugins : 
cordova-plugin-ionic-keyboard 2.2.0, (and 23 other plugins)
   
   Utility:
   
   cordova-res : not installed native-run : not installed
   
   System:
   
   ios-sim : 8.0.2 NodeJS : v12.18.3 (/usr/local/bin/node) npm : 6.14.6 OS : 
macOS Catalina Xcode : Xcode 11.6 Build version 11E708



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] timbru31 commented on issue #265: build fail in ios

2020-08-05 Thread GitBox


timbru31 commented on issue #265:
URL: 
https://github.com/apache/cordova-plugin-file-transfer/issues/265#issuecomment-669245281


   Duplicate of #258 



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova-plugin-file-transfer] timbru31 closed issue #265: build fail in ios

2020-08-05 Thread GitBox


timbru31 closed issue #265:
URL: https://github.com/apache/cordova-plugin-file-transfer/issues/265


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] sanket-bhalerao opened a new issue #231: executing npm install -g cordova@10.0.0 gives error

2020-08-06 Thread GitBox


sanket-bhalerao opened a new issue #231:
URL: https://github.com/apache/cordova/issues/231


   # Bug Report
   
   ## Problem
   when i try to upgrade cordova to version 10.0.0 it gives error 
   
   `
   λ npm install -g cordova@latest
   npm ERR! code E404
   npm ERR! 404 Not Found - GET https://registry.npmjs.org/@netflix%2fnerror - 
Not found
   npm ERR! 404
   npm ERR! 404  '@netflix/nerror@^1.1.3' is not in the npm registry.
   npm ERR! 404 You should bug the author to publish it (or use the name 
yourself!)
   npm ERR! 404 It was specified as a dependency of 'cordova-common'
   npm ERR! 404
   npm ERR! 404 Note that you can also install from a
   npm ERR! 404 tarball, folder, http url, or git url.
   
   npm ERR! A complete log of this run can be found in:
   `
   ### What is expected to happen?
   
   cordova global version should get upgraded/version 10.0.0 should get 
installed.
   
   ### What does actually happen?
   
   
![image](https://user-images.githubusercontent.com/9264813/89519120-7fd95700-d7f9-11ea-9ec7-0e38aa8d995a.png)
   
   
   ## Information
   
   as suggested in[ this 
blog](https://cordova.apache.org/announcements/2020/08/04/cordova-cli-release-10.0.0.html)
 i uninstalled the cordova global version and tried to install it again with 
@10.0.0 when that failed i tried to install it using @latest as well. Both 
results in the same error.
   
   
   ### Command or Code
   
   npm uninstall -g cordova -> succeeds 
   npm install -g cordova@10.0.0 -> fails
   
   
   ### Environment, Platform, Device
   
   Windows 10
   
   
   ### Version information
   
   
   
   
   ## Checklist
   
   
   - [ ] I searched for existing GitHub issues
   - [ ] I updated all Cordova tooling to most recent version
   - [ ] 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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] erisu commented on issue #231: executing npm install -g cordova@10.0.0 gives error

2020-08-06 Thread GitBox


erisu commented on issue #231:
URL: https://github.com/apache/cordova/issues/231#issuecomment-669843976


   Duplicate: https://github.com/apache/cordova-common/issues/149
   
   NPM is currently having an issue. https://status.npmjs.org/



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] erisu closed issue #231: executing npm install -g cordova@10.0.0 gives error

2020-08-06 Thread GitBox


erisu closed issue #231:
URL: https://github.com/apache/cordova/issues/231


   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] erisu commented on issue #231: executing npm install -g cordova@10.0.0 gives error

2020-08-06 Thread GitBox


erisu commented on issue #231:
URL: https://github.com/apache/cordova/issues/231#issuecomment-669848831


   Sorry correction, the duplicate linked issue is not exactly a complete 
duplicate but the ticket contains a response to the actual  current issue you 
have reported here.
   
   Link to exact reponse:
   https://github.com/apache/cordova-common/issues/149#issuecomment-669816061
   
   In the mean time, please monitor the npmjs registry status and try again 
after they have resolved the issue.



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



[GitHub] [cordova] bevinGithub opened a new issue #232: IOS Device Http Post Not working

2020-08-07 Thread GitBox


bevinGithub opened a new issue #232:
URL: https://github.com/apache/cordova/issues/232


   
   
   Apache Cordova uses GitHub Issues as a feature request and bug tracker 
_only_.
   For usage and support questions, please check out the resources below. 
Thanks!
   
   ---
   
   You can get answers to your usage and support questions about **Apache 
Cordova** on:
   
   * Slack Community Chat: https://cordova.slack.com (you can sign-up at 
http://slack.cordova.io/)
   * StackOverflow: https://stackoverflow.com/questions/tagged/cordova using 
the tag `cordova`
   
   ---
   
   If you are using a tool that uses Cordova internally, like e.g. Ionic, check 
their support channels:
   
   * **Ionic Framework**
 * [Ionic Community Forum](https://forum.ionicframework.com/)
 * [Ionic Worldwide Slack](https://ionicworldwide.herokuapp.com/)
   * **PhoneGap**
 * [PhoneGap Developer 
Community](https://forums.adobe.com/community/phonegap)
   



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:
us...@infra.apache.org



-
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org



  1   2   3   4   5   6   7   8   9   10   >