[jira] [Commented] (CB-13690) Change audio stream src in platform-browser

2018-03-21 Thread Michael Goffioul (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13690?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408941#comment-16408941
 ] 

Michael Goffioul commented on CB-13690:
---

Same problem here, running Chrome 65. This is particularly annoying when the 
audio stream that was started is a live radio stream: the browser will keep 
downloading data forever.


> Change audio stream src in platform-browser
> ---
>
> Key: CB-13690
> URL: https://issues.apache.org/jira/browse/CB-13690
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-media
>Affects Versions: 4.0.0
> Environment: Browser
>Reporter: Frank Owusu
>Priority: Critical
>  Labels: Audio, browser, easyfix, patch, stream
> Fix For: 4.0.0
>
>
> h2. Media object change src method for Browser.
> when node is released stream src is still being downloaded.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13986) Windows 10 builds failing with CertUtil file not found error

2018-03-21 Thread Adrian (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13986?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408919#comment-16408919
 ] 

Adrian commented on CB-13986:
-

OK will try there - thank you

> Windows 10 builds failing with CertUtil file not found error
> 
>
> Key: CB-13986
> URL: https://issues.apache.org/jira/browse/CB-13986
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-windows
>Affects Versions: 4.4.3
> Environment: PhoneGap Build using PGB CLI 6.5.0 (Cordova 4.4.3) or 
> 7.1.0 (Cordova 5.0)
> Windows 10 build only (IOS and Android are fine)
> PGB App ID 304700.
> Windows 10 app uses signing key.
> Current app version 2.6.70 (though happens with all recent versions of the 
> app)
>  
>Reporter: Adrian
>Assignee: Jesse MacFadyen
>Priority: Critical
>  Labels: Windows, phonegap-build
>
> In PhoneGap Build (PGB) Windows 10 build (with key) fails with error
> CertUtil: -importPFX command FAILED: 0x80070002 (WIN32: 2 
> ERROR_FILE_NOT_FOUND)
> Sometimes this can be resolved by requesting the same build repeatedly, 
> whereupon the build will work after 5-10 attempts.  Sometimes (as is the case 
> now) no amount of rebuild attempts fixes the error.
> Because this error can sometimes go away after repeated rebuild attempts 
> (using the same uploaded ZIP package), this clearly indicates it is a problem 
> at the PGB end, not with the ZIP package contents.
> This error has been reported on the PhoneGap Build community forums for a 
> number of months now, but no fix done.
> This is a +critical+ issue for us as we need to get a Windows 10 build for 
> our app and currently in effect the PGB Windows Build service is, for all 
> intents and purposes, DOWN.
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13767) Huge performance issues moving from cordova 6.5 to 8 due to cordova-fetch

2018-03-21 Thread Jon Rista (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13767?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408659#comment-16408659
 ] 

Jon Rista commented on CB-13767:


Latest run...over 12 and a half minutes!!
{noformat}
ionic cordova platform add android -d 777.63s user 88.14s system 114% cpu 
12:37.35 total
{noformat}

> Huge performance issues moving from cordova 6.5 to 8 due to cordova-fetch
> -
>
> Key: CB-13767
> URL: https://issues.apache.org/jira/browse/CB-13767
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Crites
>Priority: Major
>
> This is for a project with a wide variety of plugins ... about 25. This may 
> be above average, but not extreme. I've updated the project from cordova 6.5 
> to cordova 8. Cordova 8 always uses {{cordova-fetch}} to install plugins, so 
> I can't opt out. Before, I was not using {{cordova-fetch}}.
> {code}
> $ time npx cordova@6.5 platform add ios
>   23.85s user 9.26s system 130% cpu 25.414 total
> $ time npx cordova@8 platform add ios --nosave
>   402.44s user 61.94s system 119% cpu 6:28.09 total
> {code}
> That takes over 15 times longer. {{--nosave}} was used since this is the 
> default behavior for 6.5.
> For subsequent installations using {{--save}} (or default) the performance is 
> still like this.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Comment Edited] (CB-13768) cordova-fetch is unable to install from url or file system using package.json

2018-03-21 Thread Jon Rista (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13768?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408629#comment-16408629
 ] 

Jon Rista edited comment on CB-13768 at 3/21/18 9:46 PM:
-

I have experienced this issue as well. This is also for a package we do not 
directly depend on, but which appears to be a dependency of one of our direct 
dependencies (so we cannot remove it, and we have no control over where it 
comes from): 
{code:java}
→ cordova plugin add 
git+https://github.com/guyromb/Cordova-open-native-settings.git
Error: Failed to fetch plugin 
git+https://github.com/guyromb/Cordova-open-native-settings.git via registry.
Probably this is either a connection problem, or plugin spec is incorrect.
Check your connection and plugin name/version/URL.
Failed to get absolute path to installed module {code}
This has left us dead in the water for our android builds. 


was (Author: jrista):
I have experienced this issue as well. This is also for a package we do not 
directly depend on, but which appears to be a dependency of one of our direct 
dependencies (so we cannot remove it, and we have no control over where it 
comes from):

 

```

→ cordova plugin add 
git+[https://github.com/guyromb/Cordova-open-native-settings.git]
 Error: Failed to fetch plugin 
git+[https://github.com/guyromb/Cordova-open-native-settings.git] via registry.
 Probably this is either a connection problem, or plugin spec is incorrect.
 Check your connection and plugin name/version/URL.
 Failed to get absolute path to installed module

```

 

This has left us dead in the water for our android builds. 

> cordova-fetch is unable to install from url or file system using package.json
> -
>
> Key: CB-13768
> URL: https://issues.apache.org/jira/browse/CB-13768
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Crites
>Priority: Critical
>
> This is a big issue in cordova@8 since you can't opt out of cordova-fetch. 
> Using a url such as `github.com` or the file system for a plugin doesn't work 
> with package.json. It still works using config.xml:
> {code}
>  spec="https://github.com/user/cordova-plugin-repo#specific-branch; />
> 
> {code}
> This works when running {{cordova platform add}}. However, if you do not use 
> {{--nosave}} this will update package.json dependencies:
> {code}
> "cordova-plugin-repo": 
> "git+https://github.com/user/cordova-plugin-repo#branch;,
> "local-plugin": "file:src/local-plugin",
> {code}
> If you try to install with package.json like this, you'll get errors for 
> these packages:
> {code}
> Failed to restore plugin "cordova-plugin-repo" from config.xml. You might 
> need to try adding it again. Error: Failed to fetch plugin 
> https://github.com/user/cordova-plugin-repo#branch via registry.
> Probably this is either a connection problem, or plugin spec is incorrect.
>   
>Check your connection and plugin 
> name/version/URL.
> TypeError [ERR_INVALID_ARG_TYPE]: The "url" argument must be of type string. 
> Received type undefined
> Discovered plugin "local-plugin" in config.xml. Adding it to the project
> Failed to restore plugin "local-plugin" from config.xml. You might need to 
> try adding it again. Error: Failed to fetch plugin file:src/local-plugin via 
> registry.
> Probably this is either a connection problem, or plugin spec is incorrect.
> Check your connection and plugin name/version/URL.
>   
>Failed to get absolute path to installed 
> module
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Comment Edited] (CB-13768) cordova-fetch is unable to install from url or file system using package.json

2018-03-21 Thread Jon Rista (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13768?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408629#comment-16408629
 ] 

Jon Rista edited comment on CB-13768 at 3/21/18 9:46 PM:
-

I have experienced this issue as well. This is also for a package we do not 
directly depend on, but which appears to be a dependency of one of our direct 
dependencies (so we cannot remove it, and we have no control over where it 
comes from):

 

```

→ cordova plugin add 
git+[https://github.com/guyromb/Cordova-open-native-settings.git]
 Error: Failed to fetch plugin 
git+[https://github.com/guyromb/Cordova-open-native-settings.git] via registry.
 Probably this is either a connection problem, or plugin spec is incorrect.
 Check your connection and plugin name/version/URL.
 Failed to get absolute path to installed module

```

 

This has left us dead in the water for our android builds. 


was (Author: jrista):
I have experienced this issue as well. This is also for a package we do not 
directly depend on, but which appears to be a dependency of one of our direct 
dependencies (so we cannot remove it, and we have no control over where it 
comes from):

 

```→ cordova plugin add 
git+https://github.com/guyromb/Cordova-open-native-settings.git
Error: Failed to fetch plugin 
git+https://github.com/guyromb/Cordova-open-native-settings.git via registry.
Probably this is either a connection problem, or plugin spec is incorrect.
Check your connection and plugin name/version/URL.
Failed to get absolute path to installed module```

 

This has left us dead in the water for our android builds. 

> cordova-fetch is unable to install from url or file system using package.json
> -
>
> Key: CB-13768
> URL: https://issues.apache.org/jira/browse/CB-13768
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Crites
>Priority: Critical
>
> This is a big issue in cordova@8 since you can't opt out of cordova-fetch. 
> Using a url such as `github.com` or the file system for a plugin doesn't work 
> with package.json. It still works using config.xml:
> {code}
>  spec="https://github.com/user/cordova-plugin-repo#specific-branch; />
> 
> {code}
> This works when running {{cordova platform add}}. However, if you do not use 
> {{--nosave}} this will update package.json dependencies:
> {code}
> "cordova-plugin-repo": 
> "git+https://github.com/user/cordova-plugin-repo#branch;,
> "local-plugin": "file:src/local-plugin",
> {code}
> If you try to install with package.json like this, you'll get errors for 
> these packages:
> {code}
> Failed to restore plugin "cordova-plugin-repo" from config.xml. You might 
> need to try adding it again. Error: Failed to fetch plugin 
> https://github.com/user/cordova-plugin-repo#branch via registry.
> Probably this is either a connection problem, or plugin spec is incorrect.
>   
>Check your connection and plugin 
> name/version/URL.
> TypeError [ERR_INVALID_ARG_TYPE]: The "url" argument must be of type string. 
> Received type undefined
> Discovered plugin "local-plugin" in config.xml. Adding it to the project
> Failed to restore plugin "local-plugin" from config.xml. You might need to 
> try adding it again. Error: Failed to fetch plugin file:src/local-plugin via 
> registry.
> Probably this is either a connection problem, or plugin spec is incorrect.
> Check your connection and plugin name/version/URL.
>   
>Failed to get absolute path to installed 
> module
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13768) cordova-fetch is unable to install from url or file system using package.json

2018-03-21 Thread Jon Rista (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13768?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408629#comment-16408629
 ] 

Jon Rista commented on CB-13768:


I have experienced this issue as well. This is also for a package we do not 
directly depend on, but which appears to be a dependency of one of our direct 
dependencies (so we cannot remove it, and we have no control over where it 
comes from):

 

```→ cordova plugin add 
git+https://github.com/guyromb/Cordova-open-native-settings.git
Error: Failed to fetch plugin 
git+https://github.com/guyromb/Cordova-open-native-settings.git via registry.
Probably this is either a connection problem, or plugin spec is incorrect.
Check your connection and plugin name/version/URL.
Failed to get absolute path to installed module```

 

This has left us dead in the water for our android builds. 

> cordova-fetch is unable to install from url or file system using package.json
> -
>
> Key: CB-13768
> URL: https://issues.apache.org/jira/browse/CB-13768
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Crites
>Priority: Critical
>
> This is a big issue in cordova@8 since you can't opt out of cordova-fetch. 
> Using a url such as `github.com` or the file system for a plugin doesn't work 
> with package.json. It still works using config.xml:
> {code}
>  spec="https://github.com/user/cordova-plugin-repo#specific-branch; />
> 
> {code}
> This works when running {{cordova platform add}}. However, if you do not use 
> {{--nosave}} this will update package.json dependencies:
> {code}
> "cordova-plugin-repo": 
> "git+https://github.com/user/cordova-plugin-repo#branch;,
> "local-plugin": "file:src/local-plugin",
> {code}
> If you try to install with package.json like this, you'll get errors for 
> these packages:
> {code}
> Failed to restore plugin "cordova-plugin-repo" from config.xml. You might 
> need to try adding it again. Error: Failed to fetch plugin 
> https://github.com/user/cordova-plugin-repo#branch via registry.
> Probably this is either a connection problem, or plugin spec is incorrect.
>   
>Check your connection and plugin 
> name/version/URL.
> TypeError [ERR_INVALID_ARG_TYPE]: The "url" argument must be of type string. 
> Received type undefined
> Discovered plugin "local-plugin" in config.xml. Adding it to the project
> Failed to restore plugin "local-plugin" from config.xml. You might need to 
> try adding it again. Error: Failed to fetch plugin file:src/local-plugin via 
> registry.
> Probably this is either a connection problem, or plugin spec is incorrect.
> Check your connection and plugin name/version/URL.
>   
>Failed to get absolute path to installed 
> module
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13767) Huge performance issues moving from cordova 6.5 to 8 due to cordova-fetch

2018-03-21 Thread Jon Rista (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13767?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408623#comment-16408623
 ] 

Jon Rista commented on CB-13767:


It also appears to run npm independently for each and every plugin, rather than 
trying to batch the npm install for any that need to be installed/updated. If 
it could run npm install on all the plugins that need fetching all at once, it 
would be significantly faster.

> Huge performance issues moving from cordova 6.5 to 8 due to cordova-fetch
> -
>
> Key: CB-13767
> URL: https://issues.apache.org/jira/browse/CB-13767
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Crites
>Priority: Major
>
> This is for a project with a wide variety of plugins ... about 25. This may 
> be above average, but not extreme. I've updated the project from cordova 6.5 
> to cordova 8. Cordova 8 always uses {{cordova-fetch}} to install plugins, so 
> I can't opt out. Before, I was not using {{cordova-fetch}}.
> {code}
> $ time npx cordova@6.5 platform add ios
>   23.85s user 9.26s system 130% cpu 25.414 total
> $ time npx cordova@8 platform add ios --nosave
>   402.44s user 61.94s system 119% cpu 6:28.09 total
> {code}
> That takes over 15 times longer. {{--nosave}} was used since this is the 
> default behavior for 6.5.
> For subsequent installations using {{--save}} (or default) the performance is 
> still like this.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13767) Huge performance issues moving from cordova 6.5 to 8 due to cordova-fetch

2018-03-21 Thread Darryl Pogue (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13767?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408560#comment-16408560
 ] 

Darryl Pogue commented on CB-13767:
---

One of the reasons it is slow is that it appears to always fetch from npm, even 
when the plugin or platform has already been installed to node_modules by way 
of a normal {{npm install}}. It doesn't attempt to find that existing copy, but 
reinstalls it every time. It does the same for any dependencies of those 
platforms & plugins.

> Huge performance issues moving from cordova 6.5 to 8 due to cordova-fetch
> -
>
> Key: CB-13767
> URL: https://issues.apache.org/jira/browse/CB-13767
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Crites
>Priority: Major
>
> This is for a project with a wide variety of plugins ... about 25. This may 
> be above average, but not extreme. I've updated the project from cordova 6.5 
> to cordova 8. Cordova 8 always uses {{cordova-fetch}} to install plugins, so 
> I can't opt out. Before, I was not using {{cordova-fetch}}.
> {code}
> $ time npx cordova@6.5 platform add ios
>   23.85s user 9.26s system 130% cpu 25.414 total
> $ time npx cordova@8 platform add ios --nosave
>   402.44s user 61.94s system 119% cpu 6:28.09 total
> {code}
> That takes over 15 times longer. {{--nosave}} was used since this is the 
> default behavior for 6.5.
> For subsequent installations using {{--save}} (or default) the performance is 
> still like this.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13009) cordova prepare unnecessarily edits config.xml and package.json

2018-03-21 Thread Andrey Caramba (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13009?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408539#comment-16408539
 ] 

Andrey Caramba commented on CB-13009:
-

+100500  I feel hate when I see that my files with all my comments and 
formatting are changed unnecessarily and without demand

> cordova prepare unnecessarily edits config.xml and package.json
> ---
>
> Key: CB-13009
> URL: https://issues.apache.org/jira/browse/CB-13009
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-cli
>Affects Versions: 7.0.1
> Environment: Mac OSX 10.12.5
> Node 8.1.2
> npm 5.0.3
>Reporter: Christian Tschanz
>Priority: Minor
>  Labels: tools-next
>
> I crafted my config.xml file by hand (and added comments) to make it more 
> readable and maintainable. I also removed all '^' or '~' from the versions of 
> the engines/plugins to fix the version to one specific one (I will manually 
> test new versions and update if possible). I also removed the '^' from the 
> package.json file it generates.
> When running 'cordova prepare' it will completely re-create the config.xml 
> file and therefore re-format it. It will also re-add the '^' to all versions. 
> It will also add the '^' to the versions in the package.json file.
> This is VERY annoying. Previous versions did not behave like this. They only 
> edited the config.xml if explicitly told to do so. I really, really want to 
> fix the versions to a specific one and don't want it to always add the '^'. I 
> would also prefer it if it the 'prepare' command would not re-create the 
> config.xml file as there is no need for that and it kills all formatting and 
> comments.
> At the moment I hope it respects the 'package-lock' file when installing 
> plugins because I can't have it install newer versions automatically. Sadly 
> many plugins are not as stable and well maintained for such an automatic 
> update to work well in large projects.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13767) Huge performance issues moving from cordova 6.5 to 8 due to cordova-fetch

2018-03-21 Thread Jon Rista (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13767?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408537#comment-16408537
 ] 

Jon Rista commented on CB-13767:


I have to back up this issue. We just moved to cordova 7.1/8 from cordova 6.5 
due to recent breaking changes in google's build support tools. We are 
currently stuck in a bit of a nexus of catch-22's, as we have build tools doing 
things for us (i.e. changing versions, force adding back packages that are 
broken that we are trying to remove, etc.).

To make the current cordova build tools nitemare all that much worse, though, 
is the horrible performance of cordova-fetch. Cordova 6.5 used to install 
plugins in a couple of seconds, now, for our moderate set of plugins of about 
17, it takes around 6-8 minutes to install all the plugins. I don't know how 
cordova-fetch is so slow, but it is too slow to be viable in a normal daily 
work environent, or in CI. We can't be spending 8 minutes to install our 
plugins each attempt to test and fix our build. What might have been a 
couple-hour ordeal has turned into an all day and soon here multi-day ordeal 
due to the performance of cordova-fetch. 

Hopefully this issue will get some attention soon.

> Huge performance issues moving from cordova 6.5 to 8 due to cordova-fetch
> -
>
> Key: CB-13767
> URL: https://issues.apache.org/jira/browse/CB-13767
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Andrew Crites
>Priority: Major
>
> This is for a project with a wide variety of plugins ... about 25. This may 
> be above average, but not extreme. I've updated the project from cordova 6.5 
> to cordova 8. Cordova 8 always uses {{cordova-fetch}} to install plugins, so 
> I can't opt out. Before, I was not using {{cordova-fetch}}.
> {code}
> $ time npx cordova@6.5 platform add ios
>   23.85s user 9.26s system 130% cpu 25.414 total
> $ time npx cordova@8 platform add ios --nosave
>   402.44s user 61.94s system 119% cpu 6:28.09 total
> {code}
> That takes over 15 times longer. {{--nosave}} was used since this is the 
> default behavior for 6.5.
> For subsequent installations using {{--save}} (or default) the performance is 
> still like this.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Assigned] (CB-13955) No mention of 'Make' command running in 'developing-the-website' section

2018-03-21 Thread Gandhirajan (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-13955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gandhirajan reassigned CB-13955:


Assignee: Gandhirajan

> No mention of 'Make' command running in 'developing-the-website' section
> 
>
> Key: CB-13955
> URL: https://issues.apache.org/jira/browse/CB-13955
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-docs
>Reporter: Gandhirajan
>Assignee: Gandhirajan
>Priority: Major
>
> Only 'Make' installation step is mentioned in the doc. But there no mention 
> of 'Make' command running in 'developing-the-website' section of cordova docs.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Assigned] (CB-13964) 'Make' command to build cordova website dont work in windows

2018-03-21 Thread Gandhirajan (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-13964?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gandhirajan reassigned CB-13964:


Assignee: Gandhirajan

> 'Make' command to build cordova website dont work in windows
> 
>
> Key: CB-13964
> URL: https://issues.apache.org/jira/browse/CB-13964
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-docs
>Reporter: Gandhirajan
>Assignee: Gandhirajan
>Priority: Critical
>
> Make commands for cordova website devleopment dont work in windows OS



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Assigned] (CB-13994) Cordova plugins pages dont show up properly while running cordova website locally using make

2018-03-21 Thread Gandhirajan (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-13994?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gandhirajan reassigned CB-13994:


Assignee: Gandhirajan

> Cordova plugins pages dont show up properly while running cordova website 
> locally using make
> 
>
> Key: CB-13994
> URL: https://issues.apache.org/jira/browse/CB-13994
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-docs
>Reporter: Gandhirajan
>Assignee: Gandhirajan
>Priority: Critical
>
> If cordova website is built and run locally using Makefile, Plugins page wont 
> get rendered properly. The plugins list and platforms options are not loaded. 
> Basically the plugins page is broken for make build.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Resolved] (CB-13995) Cordova "Create your first Cordova app" can't get pass "Android target: not installed"

2018-03-21 Thread Julio MGM (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-13995?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julio MGM resolved CB-13995.

Resolution: Fixed

Solved it. I had java jdk-9.0.4 installed, installed jdk1.8.0_162 and 
redirected java_home there and now everything is working so far.

> Cordova "Create your first Cordova app" can't get pass "Android target: not 
> installed"
> --
>
> Key: CB-13995
> URL: https://issues.apache.org/jira/browse/CB-13995
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-android
>Affects Versions: cordova-android-7.0.0
>Reporter: Julio MGM
>Assignee: Joe Bowser
>Priority: Major
>  Labels: cordova, installation
> Attachments: pasta7.png, sdk.png
>
>
> I am trying to get Cordova to work, for the first time.
> I already added the paths, checked the android manifest and project.properties
> I have android sdk platform 14, 16 and 20 to 27 installed.
> I don't know what else to do...
> I always get the error with the image in annex.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13995) Cordova "Create your first Cordova app" can't get pass "Android target: not installed"

2018-03-21 Thread Julio MGM (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408175#comment-16408175
 ] 

Julio MGM commented on CB-13995:


Solved it. I had java jdk-9.0.4 installed, installed jdk1.8.0_162 and 
redirected java_home there and now everything is working so far.

> Cordova "Create your first Cordova app" can't get pass "Android target: not 
> installed"
> --
>
> Key: CB-13995
> URL: https://issues.apache.org/jira/browse/CB-13995
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-android
>Affects Versions: cordova-android-7.0.0
>Reporter: Julio MGM
>Assignee: Joe Bowser
>Priority: Major
>  Labels: cordova, installation
> Attachments: pasta7.png, sdk.png
>
>
> I am trying to get Cordova to work, for the first time.
> I already added the paths, checked the android manifest and project.properties
> I have android sdk platform 14, 16 and 20 to 27 installed.
> I don't know what else to do...
> I always get the error with the image in annex.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-12766) Cordova CLI changes package.json indentation

2018-03-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12766?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16408032#comment-16408032
 ] 

ASF GitHub Bot commented on CB-12766:
-

Simpler1 commented on issue #558: CB-12766 Consistently write JSON with 2 
spaces indentation
URL: https://github.com/apache/cordova-lib/pull/558#issuecomment-374963815
 
 
   @remcohaszing Perfect.  Thanks.


This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


> Cordova CLI changes package.json indentation
> 
>
> Key: CB-12766
> URL: https://issues.apache.org/jira/browse/CB-12766
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli, cordova-lib
>Affects Versions: 7.0.0
>Reporter: Remco Haszing
>Assignee: Kerri Shotts
>Priority: Minor
>  Labels: cordova-next, easy-fix
>
> While Cordova is busy adding platforms / plugins, it writes to package.json 
> several times. In this process the indentation of package.json alternates 
> between 2 and 4 spaces. The final result is an indentation of 4 spaces, which 
> conflicts with the indentation of 2 spaces that npm uses.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-12766) Cordova CLI changes package.json indentation

2018-03-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12766?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16407995#comment-16407995
 ] 

ASF GitHub Bot commented on CB-12766:
-

remcohaszing commented on issue #558: CB-12766 Consistently write JSON with 2 
spaces indentation
URL: https://github.com/apache/cordova-lib/pull/558#issuecomment-374957671
 
 
   I think it has been cherry-picked manually. Anyway, it got into master. See 
https://github.com/apache/cordova-lib/commit/d244cf8442004f2780775cb16f0ac5454b056996


This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


> Cordova CLI changes package.json indentation
> 
>
> Key: CB-12766
> URL: https://issues.apache.org/jira/browse/CB-12766
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli, cordova-lib
>Affects Versions: 7.0.0
>Reporter: Remco Haszing
>Assignee: Kerri Shotts
>Priority: Minor
>  Labels: cordova-next, easy-fix
>
> While Cordova is busy adding platforms / plugins, it writes to package.json 
> several times. In this process the indentation of package.json alternates 
> between 2 and 4 spaces. The final result is an indentation of 4 spaces, which 
> conflicts with the indentation of 2 spaces that npm uses.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-12766) Cordova CLI changes package.json indentation

2018-03-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12766?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16407988#comment-16407988
 ] 

ASF GitHub Bot commented on CB-12766:
-

Simpler1 commented on issue #558: CB-12766 Consistently write JSON with 2 
spaces indentation
URL: https://github.com/apache/cordova-lib/pull/558#issuecomment-374955587
 
 
   Why was this pull request closed and not merged?


This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


> Cordova CLI changes package.json indentation
> 
>
> Key: CB-12766
> URL: https://issues.apache.org/jira/browse/CB-12766
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli, cordova-lib
>Affects Versions: 7.0.0
>Reporter: Remco Haszing
>Assignee: Kerri Shotts
>Priority: Minor
>  Labels: cordova-next, easy-fix
>
> While Cordova is busy adding platforms / plugins, it writes to package.json 
> several times. In this process the indentation of package.json alternates 
> between 2 and 4 spaces. The final result is an indentation of 4 spaces, which 
> conflicts with the indentation of 2 spaces that npm uses.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13986) Windows 10 builds failing with CertUtil file not found error

2018-03-21 Thread Jan Piotrowski (Sujan) (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13986?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16407970#comment-16407970
 ] 

Jan Piotrowski (Sujan) commented on CB-13986:
-

There is a #phonegap channel in the Cordova Slack (linked from the Cordova 
website footer) where some of them hang out I think. (Someone triggered the 
`phonegap` 8.0.0 release by asking there multiple times)

> Windows 10 builds failing with CertUtil file not found error
> 
>
> Key: CB-13986
> URL: https://issues.apache.org/jira/browse/CB-13986
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-windows
>Affects Versions: 4.4.3
> Environment: PhoneGap Build using PGB CLI 6.5.0 (Cordova 4.4.3) or 
> 7.1.0 (Cordova 5.0)
> Windows 10 build only (IOS and Android are fine)
> PGB App ID 304700.
> Windows 10 app uses signing key.
> Current app version 2.6.70 (though happens with all recent versions of the 
> app)
>  
>Reporter: Adrian
>Assignee: Jesse MacFadyen
>Priority: Critical
>  Labels: Windows, phonegap-build
>
> In PhoneGap Build (PGB) Windows 10 build (with key) fails with error
> CertUtil: -importPFX command FAILED: 0x80070002 (WIN32: 2 
> ERROR_FILE_NOT_FOUND)
> Sometimes this can be resolved by requesting the same build repeatedly, 
> whereupon the build will work after 5-10 attempts.  Sometimes (as is the case 
> now) no amount of rebuild attempts fixes the error.
> Because this error can sometimes go away after repeated rebuild attempts 
> (using the same uploaded ZIP package), this clearly indicates it is a problem 
> at the PGB end, not with the ZIP package contents.
> This error has been reported on the PhoneGap Build community forums for a 
> number of months now, but no fix done.
> This is a +critical+ issue for us as we need to get a Windows 10 build for 
> our app and currently in effect the PGB Windows Build service is, for all 
> intents and purposes, DOWN.
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Resolved] (CB-13994) Cordova plugins pages dont show up properly while running cordova website locally using make

2018-03-21 Thread Jan Piotrowski (Sujan) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CB-13994?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jan Piotrowski (Sujan) resolved CB-13994.
-
Resolution: Fixed

> Cordova plugins pages dont show up properly while running cordova website 
> locally using make
> 
>
> Key: CB-13994
> URL: https://issues.apache.org/jira/browse/CB-13994
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-docs
>Reporter: Gandhirajan
>Priority: Critical
>
> If cordova website is built and run locally using Makefile, Plugins page wont 
> get rendered properly. The plugins list and platforms options are not loaded. 
> Basically the plugins page is broken for make build.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13994) Cordova plugins pages dont show up properly while running cordova website locally using make

2018-03-21 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13994?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16407817#comment-16407817
 ] 

ASF GitHub Bot commented on CB-13994:
-

janpio closed pull request #807: CB-13994  Cordova plugins pages dont show up 
properly while running cordova website locally using make
URL: https://github.com/apache/cordova-docs/pull/807
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/Makefile b/Makefile
index 43e95a229..23a2fa90d 100644
--- a/Makefile
+++ b/Makefile
@@ -238,7 +238,7 @@ $(FETCHED_FILES): $(FETCH_CONFIG) $(FETCH_SCRIPT)
 $(PLUGINS_APP): $(PLUGINS_SRC)
echo ---> $@
echo --->> $@
-   $(BROWSERIFY) -t reactify -t envify $< | $(UGLIFY) >> $@
+   $(BROWSERIFY) -t [ babelify --presets [ react ] --plugins [ 
transform-h-jsx ] ] -t envify $< | $(UGLIFY) >> $@
 
 $(DOCS_VERSION_DATA): $(BIN_DIR)/gen_versions.js $(DOCS_DIR)
$(NODE) $(BIN_DIR)/gen_versions.js $(DOCS_DIR) > $@
diff --git a/package.json b/package.json
index 33cdbee30..82c662de4 100644
--- a/package.json
+++ b/package.json
@@ -50,7 +50,7 @@
 "preact-compat": "^3.17.0",
 "q": "^1.4.1",
 "shelljs": "^0.3.0",
-"uglifyjs": "^2.4.10",
+"uglify-js": "^3.3.15",
 "vinyl-buffer": "^1.0.0",
 "vinyl-source-stream": "^1.1.0",
 "walk": "^2.3.9",
@@ -58,6 +58,8 @@
   },
   "devDependencies": {
 "babel-plugin-transform-react-jsx": "^6.24.1",
+"babel-plugin-transform-h-jsx": "^1.0.0",
+"esutils": "^2.0.2",
 "babel-preset-react": "^6.24.1",
 "babelify": "^7.3.0",
 "colors": "^1.0.3",


 


This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


> Cordova plugins pages dont show up properly while running cordova website 
> locally using make
> 
>
> Key: CB-13994
> URL: https://issues.apache.org/jira/browse/CB-13994
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-docs
>Reporter: Gandhirajan
>Priority: Critical
>
> If cordova website is built and run locally using Makefile, Plugins page wont 
> get rendered properly. The plugins list and platforms options are not loaded. 
> Basically the plugins page is broken for make build.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Created] (CB-13995) Cordova "Create your first Cordova app" can't get pass "Android target: not installed"

2018-03-21 Thread Julio MGM (JIRA)
Julio MGM created CB-13995:
--

 Summary: Cordova "Create your first Cordova app" can't get pass 
"Android target: not installed"
 Key: CB-13995
 URL: https://issues.apache.org/jira/browse/CB-13995
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-android
Affects Versions: cordova-android-7.0.0
Reporter: Julio MGM
Assignee: Joe Bowser
 Attachments: pasta7.png, sdk.png

I am trying to get Cordova to work, for the first time.

I already added the paths, checked the android manifest and project.properties

I have android sdk platform 14, 16 and 20 to 27 installed.

I don't know what else to do...

I always get the error with the image in annex.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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



[jira] [Commented] (CB-13858) Camera not able to capture image Android 8.0 and above

2018-03-21 Thread swamy gowda (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-13858?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16407542#comment-16407542
 ] 

swamy gowda commented on CB-13858:
--

I am facing the same issue as well, tried out the latest dev build as well 
which has the WRITE permission fixes. But still getting the same error on 
android 8 on one-plus 5

> Camera not able to capture image Android 8.0  and above
> ---
>
> Key: CB-13858
> URL: https://issues.apache.org/jira/browse/CB-13858
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-camera
>Affects Versions: cordova-android-7.0.0
> Environment: Android OS 8.0
> Ionic Framework
> Angualr 4
>Reporter: Akashdeep Sharma
>Priority: Major
>
> Hi,
>  
> When ever i try to take image using the plugin from android os 8.0 or above i 
> get error saying image not capture. But i am able to select image from gallery



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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