[jira] [Commented] (CB-12787) cordova@7 plugin add --link is broken

2017-05-11 Thread Kerri Shotts (JIRA)

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

Kerri Shotts commented on CB-12787:
---

Well, this explains a few things I've just run into. {{--nofetch}} works as a 
workaround for now, though.

> cordova@7 plugin add --link is broken
> -
>
> Key: CB-12787
> URL: https://issues.apache.org/jira/browse/CB-12787
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-fetch, cordova-lib
>Affects Versions: 7.0.0
>Reporter: Steve Gill
>  Labels: cordova-8.0.0
>
> with the change to cordova-fetch for local paths, cordova plugin add 
> SOMELOCALPATH --link doesn't work anymore. 
> The plugin first gets `npm installed` into your cordova project (so it now 
> lives in node_modules), and then it gets copied into your plugins directory. 
> During the copy to your plugins directory step, that is when the symlink gets 
> created. So the symlink points to your node_modules/PLUGINDIR and not the 
> local path to your plugin.
> I believe the solution to fixing this would be to `npm link` the plugin 
> instead of `npm install` when adding it with `--link` flag. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12802) Fix build.gradle to sign when building with multiple APK is enable.

2017-05-11 Thread Kevin Lot (JIRA)

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

Kevin Lot updated CB-12802:
---
Summary: Fix build.gradle to sign when building with multiple APK is 
enable.  (was: When multiple APKs build is enable, you cannot sign and the 
build crashes.)

> Fix build.gradle to sign when building with multiple APK is enable.
> ---
>
> Key: CB-12802
> URL: https://issues.apache.org/jira/browse/CB-12802
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-android
>Affects Versions: cordova@7.0.0
>Reporter: Kevin Lot
>
> When multiple APKs build is enable, you cannot sign and the build crashes.
> Method for sign can be parameters of command or build.json, etc.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12626) Splashscreen crashing on Samsung devices, not rendering on others

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12626:
-

Github user Lazza commented on the issue:

https://github.com/apache/cordova-plugin-splashscreen/pull/125
  
@filmaj, @infil00p unfortunately I do not have access to many Samsung 
devices. I was able to test this plug-in only with the models mentioned in the 
PR.

As @SamDelgado confirmed, I think the best bet is to test on a Samsung 
Galaxy S7 Edge.


> Splashscreen crashing on Samsung devices, not rendering on others
> -
>
> Key: CB-12626
> URL: https://issues.apache.org/jira/browse/CB-12626
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-splashscreen
> Environment: Crashing devices:
> - Samsung Galaxy 7 Edge, Android 7.0
> - Samsung Galaxy Note 4, Android 6.0.1
> "Not showing" devices:
> - Lenovo/Zuk Z1, Android 5.1.1
> - Official Android Emulator with Nexus S simulated hardware, API 25
>Reporter: Andrea Lazzarotto
>  Labels: android
>
> We tested the plugin on a few Samsung devices and found out that the current 
> version of the splash screen plug-in is completely crashing the app, with an 
> error given by {{AndroidRuntime}} (including the PID of the app) and a 
> warning given by {{ActivityManager}} in the log:
> {{Force finishing activity packagename/.MainActivity}}
> Moreover, we noticed that the splash screen is not showing correctly on some 
> devices. The Samsung crash was initially solved by commenting out this line:
> {{preferences.set("SplashDrawableId", drawableId);}}
> Basically, this means that storing the {{drawableId}} in the preferences is 
> not reliable. This didn't solve the display issue on other devices, which 
> required refactoring the code that reads the resource ID.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12626) Splashscreen crashing on Samsung devices, not rendering on others

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12626:
-

Github user SamDelgado commented on the issue:

https://github.com/apache/cordova-plugin-splashscreen/pull/125
  
I have a Samung Galaxy S7 Edge that experienced an immediate crash when my 
app launched. This pull request fixed it.


> Splashscreen crashing on Samsung devices, not rendering on others
> -
>
> Key: CB-12626
> URL: https://issues.apache.org/jira/browse/CB-12626
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-splashscreen
> Environment: Crashing devices:
> - Samsung Galaxy 7 Edge, Android 7.0
> - Samsung Galaxy Note 4, Android 6.0.1
> "Not showing" devices:
> - Lenovo/Zuk Z1, Android 5.1.1
> - Official Android Emulator with Nexus S simulated hardware, API 25
>Reporter: Andrea Lazzarotto
>  Labels: android
>
> We tested the plugin on a few Samsung devices and found out that the current 
> version of the splash screen plug-in is completely crashing the app, with an 
> error given by {{AndroidRuntime}} (including the PID of the app) and a 
> warning given by {{ActivityManager}} in the log:
> {{Force finishing activity packagename/.MainActivity}}
> Moreover, we noticed that the splash screen is not showing correctly on some 
> devices. The Samsung crash was initially solved by commenting out this line:
> {{preferences.set("SplashDrawableId", drawableId);}}
> Basically, this means that storing the {{drawableId}} in the preferences is 
> not reliable. This didn't solve the display issue on other devices, which 
> required refactoring the code that reads the resource ID.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Comment Edited] (CB-12779) StatusBarOverlaysWebView to false does not work on iOS 10.3

2017-05-11 Thread jcesarmobile (JIRA)

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

jcesarmobile edited comment on CB-12779 at 5/11/17 10:21 PM:
-

I can't reproduce it on an iPhone SE with iOS 10.3.1

Can you provide more information? Cordova CLI version, Cordova iOS version, 
device model, etc.

I've seen this happening when you have a Content Security Policy without gap: 
on the default-src, but that should also make any other plugin to now work, so 
if other plugins work, I'm out of ideas.


was (Author: jcesarmobile):
I can't reproduce it on an iPhone SE with iOS 10.3.1

Can you provide more information? Cordova CLI version, Cordova iOS version, 
device model, etc.

> StatusBarOverlaysWebView to false does not work on iOS 10.3
> ---
>
> Key: CB-12779
> URL: https://issues.apache.org/jira/browse/CB-12779
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-statusbar
>Reporter: Thomas Fétiveau
>
> After upgrading iPhone to iOS 10.3, the status bar plugin setting 
> StatusBarOverlaysWebView set to false does not work anymore.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12779) StatusBarOverlaysWebView to false does not work on iOS 10.3

2017-05-11 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-12779:
---

I can't reproduce it on an iPhone SE with iOS 10.3.1

Can you provide more information? Cordova CLI version, Cordova iOS version, 
device model, etc.

> StatusBarOverlaysWebView to false does not work on iOS 10.3
> ---
>
> Key: CB-12779
> URL: https://issues.apache.org/jira/browse/CB-12779
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-statusbar
>Reporter: Thomas Fétiveau
>
> After upgrading iPhone to iOS 10.3, the status bar plugin setting 
> StatusBarOverlaysWebView set to false does not work anymore.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Closed] (CB-12768) Replacing video tags results in a video player inconsistent state

2017-05-11 Thread jcesarmobile (JIRA)

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

jcesarmobile closed CB-12768.
-
Resolution: Not A Problem

So if this also happens on Safari, it's a Safari bug, not a Cordova bug, you 
should report it to Apple

> Replacing video tags results in a video player inconsistent state
> -
>
> Key: CB-12768
> URL: https://issues.apache.org/jira/browse/CB-12768
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova7
> Environment: Tested on iOS 10.3 with the normal webview and wkwebview
>Reporter: Jörn Heid
>
> If you add something like this:
> 
> Show Video 
> again
> to your index.html and recreate the video several times by clicking the 
> button after starting the video (so click the button, start the video, click 
> the button, start the video and so on), after about 13 tries (no kidding) the 
> video can't be started anymore. 
> This might be related to a memory bug with the video playback, but there's no 
> "low memory" message.
> I tested it with the old webview and WKWebView but there's no different.
> Seems to be an internal problem of iOS I think.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Closed] (CB-12783) SDK can't used. miss package.json. block users. please Expedited

2017-05-11 Thread jcesarmobile (JIRA)

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

jcesarmobile closed CB-12783.
-
Resolution: Not A Problem

This is not a problem, plugins are now required to have a package.json.
You'll have to update your plugin adding the package.json

You can do it easily installing plugman

npm install -g plugman
plugman createpackagejson /path/to/your/plugin

And enter the information being asked by that command

> SDK can't used. miss package.json. block users. please Expedited
> 
>
> Key: CB-12783
> URL: https://issues.apache.org/jira/browse/CB-12783
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: cordova-android
>Affects Versions: 7.0.2
> Environment: mac 10.xx
>Reporter: sanbo
>Priority: Blocker
>   Original Estimate: 3h 32m
>  Remaining Estimate: 3h 32m
>
>  hi:
> I'm a sdk developer.  my sdk contains plugin.xml/src/www not contain  
> package.json. after new version (7.0), can't work. error log:
> Error: Invalid Plugin! ../sdk/ needs a valid package.json



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12804) Cordova-browser PWA needs a manifest file

2017-05-11 Thread Audrey So (JIRA)
Audrey So created CB-12804:
--

 Summary: Cordova-browser PWA needs a manifest file
 Key: CB-12804
 URL: https://issues.apache.org/jira/browse/CB-12804
 Project: Apache Cordova
  Issue Type: Improvement
  Components: cordova-browser
Reporter: Audrey So
 Fix For: cordova7


Cordova-browser PWA needs a manifest file.
This manifest.json file should get created during cordova platform add browser 
and use values from config.xml to build.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12790) iOS: locking to landscape-(primary|secondary) inconsistent with screen.orientation.type

2017-05-11 Thread Jason Vertucio (JIRA)

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

Jason Vertucio commented on CB-12790:
-

Wait. I previously opened a ticket for this?! CB-11411?!?! 

> iOS: locking to landscape-(primary|secondary) inconsistent with 
> screen.orientation.type
> ---
>
> Key: CB-12790
> URL: https://issues.apache.org/jira/browse/CB-12790
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-screen-orientation
>Reporter: Jason Vertucio
> Attachments: cordova_info.txt, index.js, index.js
>
>
> For me, using cordova-plugin-screen-orientation@2.0.1, 
> {{screen.orientation.lock('landscape')}} works to lock the device into 
> landscape mode. However, a new issue appears if I try to lock to 
> "landscape-primary" or "landscape-secondary."
> *Desired functionality:*
> # iOS device is initially locked in "portrait-primary" mode
> # User is required to turn device to landscape mode, so 
> {{screen.orientation.lock('landscape');}} is called
> # App should stick with orientation it went to, so if user turns phone upside 
> down, it doesn't flip orientation
> *To achieve this:*
> Using the _Hello Cordova_ app, I do the following to {{index.js}}
> {code}
> // Add this to the receivedEvent() method
> console.log('Received Event: ' + id);
> window.addEventListener('orientationchange',app.orientationChanged);
> // Then add this to index.js after receivedEvent() method
> orientationChanged: function() {
> console.log("Orientation changed to " + screen.orientation.type);
> console.log("Locking orientation to " + screen.orientation.type);
> screen.orientation.lock(screen.orientation.type);
> }
> {code}
> *Actual functionality:*
> When the app is run, instead of locking to a landscape mode and staying in 
> place, it locks into landscape mode and then spins like it's _party time!_



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-3232) "cordova platform add blackberry" fails on 2.7.1-rc.1

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-3232:


GitHub user audreyso opened a pull request:

https://github.com/apache/cordova-test-platform/pull/1

Doc requirements for platform api expectations

Not ready for review yet! Thanks! :)



### Platforms affected


### What does this PR do?
Document requirements for platform api expectations

### What testing has been done on this change?

### Checklist
- [ ] [Reported an issue](http://cordova.apache.org/contribute/issues.html) 
in the JIRA database
- [ ] Commit message follows the format: "CB-3232: (android) Fix bug with 
resolving file paths", where CB- is the JIRA ID & "android" is the platform 
affected.
- [ ] Added automated test coverage as appropriate for this change.


You can merge this pull request into a Git repository by running:

$ git pull https://github.com/audreyso/cordova-test-platform DocRequirements

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-test-platform/pull/1.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1


commit 620be407e792f0c0a9b7aa49689be41137ba2e21
Author: Jesse MacFadyen 
Date:   2017-05-04T01:20:39Z

document platform api expectations

commit 60c45ec48e4d8b965c26c1ca0e025d64bde12015
Author: Jesse MacFadyen 
Date:   2017-05-04T03:15:35Z

added more info, and todo:s

commit acc5435520d3f3badb76f9785573357a0ef31959
Author: Audrey So 
Date:   2017-05-04T23:49:31Z

DocRequirements : added information about the methods and their 
params/returns




> "cordova platform add blackberry" fails on 2.7.1-rc.1
> -
>
> Key: CB-3232
> URL: https://issues.apache.org/jira/browse/CB-3232
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-blackberry (DEPRECATED), cordova-cli
>Affects Versions: 2.7.0
>Reporter: Michael Brooks
>Assignee: Michael Brooks
> Fix For: 2.7.0
>
>
> The following error is thrown when running {{$ cordova platform add 
> blackberry}}:
> {code}
> [Error: An error occured during creation of blackberry sub-project. Creating 
> BlackBerry project...
> Updating config.xml ...
> sed: 
> /Users/mwbrooks/Dropbox/Development/sandbox/myapp/platforms/blackberry/www/config.xml:
>  No such file or directory
> Cleaning up ...
> Remember to update the project.properties file inside your application 
> directory!
> ]
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12673) ios platform does not build on Xcode 8.3.2

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12673:
-

Github user shazron commented on the issue:

https://github.com/apache/cordova-ios/pull/307
  
@leshik can you try with a new fresh project? perhaps in a new existing 
project you need to `cordova platform rm ios` then `cordova platform add ios`
Confirm you are getting the latest: `cordova platform ls`



> ios platform does not build on Xcode 8.3.2
> --
>
> Key: CB-12673
> URL: https://issues.apache.org/jira/browse/CB-12673
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
> Environment: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>Priority: Blocker
> Fix For: cordova-ios@4.4.0
>
>
> Build error {{Cordova/CDVViewController.h file not found}}
> Turns out the {{CordovaLib.xcodeproj}} reference in the template's project is 
> not found. 
> Fix in the .pbxproj:
> Change 
> {code}
> { isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = 
> "CordovaLib.xcodeproj"; sourceTree = CORDOVALIB; };
> {code} 
> to 
> {code}
> { isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = 
> CordovaLib/CordovaLib.xcodeproj; sourceTree = ""; };
> {code}
> Note that I have {color:red}not{color} tested this change with an older Xcode 
> 8 (< 8.3.2), so that might complicate things.
> iOS platforms in the wild older than cordova-ios@4.4.0 will need a hook to 
> transform the pbxproj if the developer upgraded to Xcode 8.3.2



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12803) Add package.json to file-extras-rewrite in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12803.
---
Resolution: Won't Fix

Although the branch is there, I don't think they are even remotely used. (a 
bunch of Google stuff from their dev team)

> Add package.json to file-extras-rewrite in cordova-plugins repo
> ---
>
> Key: CB-12803
> URL: https://issues.apache.org/jira/browse/CB-12803
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12794) Add package.json to plugins in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12794.
---
Resolution: Fixed

> Add package.json to plugins in cordova-plugins repo
> ---
>
> Key: CB-12794
> URL: https://issues.apache.org/jira/browse/CB-12794
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12803) Add package.json to file-extras-rewrite in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12803:
-

 Summary: Add package.json to file-extras-rewrite in 
cordova-plugins repo
 Key: CB-12803
 URL: https://issues.apache.org/jira/browse/CB-12803
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12796) Add package.json to keyboard in cordova-plugins repo

2017-05-11 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on CB-12796:
--

Commit 67cbeaa61122537ff4f4c27b3014a6dacf5dd122 in cordova-plugins's branch 
refs/heads/keyboard from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugins.git;h=67cbeaa ]

CB-12796 - updated version (for real this time)


> Add package.json to keyboard in cordova-plugins repo
> 
>
> Key: CB-12796
> URL: https://issues.apache.org/jira/browse/CB-12796
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12796) Add package.json to keyboard in cordova-plugins repo

2017-05-11 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on CB-12796:
--

Commit 14d1feb6cf121fdfa450dd63eef5c20a242095ac in cordova-plugins's branch 
refs/heads/keyboard from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugins.git;h=14d1feb ]

CB-12796 - updated version, add package.json


> Add package.json to keyboard in cordova-plugins repo
> 
>
> Key: CB-12796
> URL: https://issues.apache.org/jira/browse/CB-12796
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12796) Add package.json to keyboard in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12796.
---
Resolution: Fixed

> Add package.json to keyboard in cordova-plugins repo
> 
>
> Key: CB-12796
> URL: https://issues.apache.org/jira/browse/CB-12796
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12795) Add package.json to create-test-files in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12795.
---
Resolution: Not A Problem

Already has a package.json

> Add package.json to create-test-files in cordova-plugins repo
> -
>
> Key: CB-12795
> URL: https://issues.apache.org/jira/browse/CB-12795
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12802) When multiple APKs build is enable, you cannot sign and the build crashes.

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12802:
-

Github user codecov-io commented on the issue:

https://github.com/apache/cordova-android/pull/379
  
# 
[Codecov](https://codecov.io/gh/apache/cordova-android/pull/379?src=pr=h1) 
Report
> Merging 
[#379](https://codecov.io/gh/apache/cordova-android/pull/379?src=pr=desc) 
into 
[6.2.x](https://codecov.io/gh/apache/cordova-android/commit/c0df73c3c1040792fdf08acf3c2e07566123357f?src=pr=desc)
 will **not change** coverage.
> The diff coverage is `n/a`.

[![Impacted file tree 
graph](https://codecov.io/gh/apache/cordova-android/pull/379/graphs/tree.svg?src=pr=q14nMf6C5a=650=150)](https://codecov.io/gh/apache/cordova-android/pull/379?src=pr=tree)

```diff
@@   Coverage Diff   @@
##6.2.x #379   +/-   ##
===
  Coverage   42.07%   42.07%   
===
  Files  14   14   
  Lines1338 1338   
  Branches  245  245   
===
  Hits  563  563   
  Misses775  775
```



--

[Continue to review full report at 
Codecov](https://codecov.io/gh/apache/cordova-android/pull/379?src=pr=continue).
> **Legend** - [Click here to learn 
more](https://docs.codecov.io/docs/codecov-delta)
> `Δ = absolute  (impact)`, `ø = not affected`, `? = missing data`
> Powered by 
[Codecov](https://codecov.io/gh/apache/cordova-android/pull/379?src=pr=footer).
 Last update 
[c0df73c...b57ee1a](https://codecov.io/gh/apache/cordova-android/pull/379?src=pr=lastupdated).
 Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).



> When multiple APKs build is enable, you cannot sign and the build crashes.
> --
>
> Key: CB-12802
> URL: https://issues.apache.org/jira/browse/CB-12802
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-android
>Affects Versions: cordova@7.0.0
>Reporter: Kevin Lot
>
> When multiple APKs build is enable, you cannot sign and the build crashes.
> Method for sign can be parameters of command or build.json, etc.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12798) Add package.json to notification-rebroadcast in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12798.
---
Resolution: Fixed

> Add package.json to notification-rebroadcast in cordova-plugins repo
> 
>
> Key: CB-12798
> URL: https://issues.apache.org/jira/browse/CB-12798
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12798) Add package.json to notification-rebroadcast in cordova-plugins repo

2017-05-11 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on CB-12798:
--

Commit f99f938347ca7e9e1bd9b15ed95afd74f9fd4041 in cordova-plugins's branch 
refs/heads/notification-rebroadcast from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugins.git;h=f99f938 ]

CB-12798 - updated version, added package.json


> Add package.json to notification-rebroadcast in cordova-plugins repo
> 
>
> Key: CB-12798
> URL: https://issues.apache.org/jira/browse/CB-12798
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12799) Add package.json to notification in cordova-plugins repo

2017-05-11 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on CB-12799:
--

Commit 8432895c4d3b222f831125f5f2adb04d22a0076a in cordova-plugins's branch 
refs/heads/notification from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugins.git;h=8432895 ]

CB-12799 - updated version, add package.json


> Add package.json to notification in cordova-plugins repo
> 
>
> Key: CB-12799
> URL: https://issues.apache.org/jira/browse/CB-12799
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12799) Add package.json to notification in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12799.
---
Resolution: Fixed

> Add package.json to notification in cordova-plugins repo
> 
>
> Key: CB-12799
> URL: https://issues.apache.org/jira/browse/CB-12799
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12802) When multiple APKs build is enable, you cannot sign and the build crashes.

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12802:
-

GitHub user kevin-lot opened a pull request:

https://github.com/apache/cordova-android/pull/379

CB-12802: (android) When multiple APKs build is enable, you cannot sign and 
the build crashes.

When 'cdvBuildMultipleApks' is true, 'task.name' can have 
'validateSigningArmv7Release' or 'validateSigningX86Release' values.

### Platforms affected
cordova 7
cordova-android 6.2.3

### What does this PR do?
Fix build.gradle to sign when multiple APK is enable.

### What testing has been done on this change?
Test to build with or without signature and with or without multiple APK.

### Checklist
- [x] [Reported an issue](http://cordova.apache.org/contribute/issues.html) 
in the JIRA database
- [] Commit message follows the format: "CB-3232: (android) Fix bug with 
resolving file paths", where CB- is the JIRA ID & "android" is the platform 
affected.
- [ ] Added automated test coverage as appropriate for this change.


You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Keyclic/cordova-android 6.2.x

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cordova-android/pull/379.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #379


commit b57ee1afa10b4cfba8858742d43404fab536d0e0
Author: Kevin Lot 
Date:   2017-05-11T17:58:29Z

Include missing values for task.name

When 'cdvBuildMultipleApks' is true, 'task.name' can have 
'validateSigningArmv7Release' or 'validateSigningX86Release' values.




> When multiple APKs build is enable, you cannot sign and the build crashes.
> --
>
> Key: CB-12802
> URL: https://issues.apache.org/jira/browse/CB-12802
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-android
>Affects Versions: cordova@7.0.0
>Reporter: Kevin Lot
>
> When multiple APKs build is enable, you cannot sign and the build crashes.
> Method for sign can be parameters of command or build.json, etc.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12800) Add package.json to tcpsocket in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12800.
---
Resolution: Fixed

> Add package.json to tcpsocket in cordova-plugins repo
> -
>
> Key: CB-12800
> URL: https://issues.apache.org/jira/browse/CB-12800
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12800) Add package.json to tcpsocket in cordova-plugins repo

2017-05-11 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on CB-12800:
--

Commit 0fba464b9ae53e607e9178edb3287535eca47bc6 in cordova-plugins's branch 
refs/heads/tcpsocket from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugins.git;h=0fba464 ]

CB-12800 - renamed id, add package.json


> Add package.json to tcpsocket in cordova-plugins repo
> -
>
> Key: CB-12800
> URL: https://issues.apache.org/jira/browse/CB-12800
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12802) When multiple APKs build is enable, you cannot sign and the build crashes.

2017-05-11 Thread Kevin Lot (JIRA)
Kevin Lot created CB-12802:
--

 Summary: When multiple APKs build is enable, you cannot sign and 
the build crashes.
 Key: CB-12802
 URL: https://issues.apache.org/jira/browse/CB-12802
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-android
Affects Versions: cordova@7.0.0
Reporter: Kevin Lot


When multiple APKs build is enable, you cannot sign and the build crashes.

Method for sign can be parameters of command or build.json, etc.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12797) Add package.json to local-webserver in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12797.
---
Resolution: Not A Problem

Already has package.json

> Add package.json to local-webserver in cordova-plugins repo
> ---
>
> Key: CB-12797
> URL: https://issues.apache.org/jira/browse/CB-12797
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Resolved] (CB-12801) Add package.json to wkwebview-engine-localhost in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12801.
---
Resolution: Fixed

> Add package.json to wkwebview-engine-localhost in cordova-plugins repo
> --
>
> Key: CB-12801
> URL: https://issues.apache.org/jira/browse/CB-12801
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12801) Add package.json to wkwebview-engine-localhost in cordova-plugins repo

2017-05-11 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on CB-12801:
--

Commit 49b786d1a24e02aee2a5f9716a44213d21269edc in cordova-plugins's branch 
refs/heads/wkwebview-engine-localhost from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugins.git;h=49b786d ]

CB-12801 - Add package.json to wkwebview-engine-localhost in cordova-plugins 
repo


> Add package.json to wkwebview-engine-localhost in cordova-plugins repo
> --
>
> Key: CB-12801
> URL: https://issues.apache.org/jira/browse/CB-12801
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: cordova-plugins
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12801) Add package.json to wkwebview-engine-localhost in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12801:
-

 Summary: Add package.json to wkwebview-engine-localhost in 
cordova-plugins repo
 Key: CB-12801
 URL: https://issues.apache.org/jira/browse/CB-12801
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12800) Add package.json to tcpsocket in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12800:
-

 Summary: Add package.json to tcpsocket in cordova-plugins repo
 Key: CB-12800
 URL: https://issues.apache.org/jira/browse/CB-12800
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12799) Add package.json to notification in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12799:
-

 Summary: Add package.json to notification in cordova-plugins repo
 Key: CB-12799
 URL: https://issues.apache.org/jira/browse/CB-12799
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12798) Add package.json to notification-rebroadcast in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12798:
-

 Summary: Add package.json to notification-rebroadcast in 
cordova-plugins repo
 Key: CB-12798
 URL: https://issues.apache.org/jira/browse/CB-12798
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12797) Add package.json to local-webserver in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12797:
-

 Summary: Add package.json to local-webserver in cordova-plugins 
repo
 Key: CB-12797
 URL: https://issues.apache.org/jira/browse/CB-12797
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12796) Add package.json to keyboard in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12796:
-

 Summary: Add package.json to keyboard in cordova-plugins repo
 Key: CB-12796
 URL: https://issues.apache.org/jira/browse/CB-12796
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12795) Add package.json to create-test-files in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12795:
-

 Summary: Add package.json to create-test-files in cordova-plugins 
repo
 Key: CB-12795
 URL: https://issues.apache.org/jira/browse/CB-12795
 Project: Apache Cordova
  Issue Type: Sub-task
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12794) Add package.json to plugins in cordova-plugins repo

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12794:
-

 Summary: Add package.json to plugins in cordova-plugins repo
 Key: CB-12794
 URL: https://issues.apache.org/jira/browse/CB-12794
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-plugins
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah






--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12792) Concat all the js files of weinre client into one bound

2017-05-11 Thread Patrick Mueller (JIRA)

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

Patrick Mueller commented on CB-12792:
--

It seems like the best approach may be to put this functionality into 
`weinre.build/scripts/build-client-html.py`, which seems to be the code which 
builds the .html file in question.

> Concat all the js files of weinre client into one bound
> ---
>
> Key: CB-12792
> URL: https://issues.apache.org/jira/browse/CB-12792
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: cordova-weinre
>Affects Versions: cordova@7.0.0
> Environment: ALL
>Reporter: unbug
>Assignee: Patrick Mueller
>Priority: Blocker
>  Labels: build
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> It's took too long to load the client with more than 140+ js files from a 
> remote server, and event it done loading, the socket already lost. It's 
> better to have a concat bound for the client.
> 1. Prove a default bound.
> 2. Prove a npm build task to build the bound manually.
> 3. Prove a npm build task to minify the bound.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12785) cli v7 cannot add plugin via git+ssh

2017-05-11 Thread Audrey So (JIRA)

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

Audrey So commented on CB-12785:


I tried : cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH & npm 
install git+ssh://g...@github.com/XXX/XXX.git#HASH

Fails on older versions too

> cli v7 cannot add plugin via git+ssh
> 
>
> Key: CB-12785
> URL: https://issues.apache.org/jira/browse/CB-12785
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli
>Affects Versions: 6.0.0, 7.0.0, 6.5.0
> Environment: Ubuntu 16.04 x64
>Reporter: Chris Hunt
>Priority: Minor
>  Labels: cordova-8.0.0, reproduced, triage
>
> In previous versions (including 6.5), the following command would work:
> cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH
> This appears to be broken in v7; it results in the following error:
> Error: Failed to fetch plugin ssh://g...@github.com/XXX/XXX#HASH 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 message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12785) cli v7 cannot add plugin via git+ssh

2017-05-11 Thread Audrey So (JIRA)

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

Audrey So updated CB-12785:
---
Labels: cordova-8.0.0 reproduced triage  (was: cordova-8.0.0)

> cli v7 cannot add plugin via git+ssh
> 
>
> Key: CB-12785
> URL: https://issues.apache.org/jira/browse/CB-12785
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli
>Affects Versions: 6.0.0, 7.0.0, 6.5.0
> Environment: Ubuntu 16.04 x64
>Reporter: Chris Hunt
>Priority: Minor
>  Labels: cordova-8.0.0, reproduced, triage
>
> In previous versions (including 6.5), the following command would work:
> cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH
> This appears to be broken in v7; it results in the following error:
> Error: Failed to fetch plugin ssh://g...@github.com/XXX/XXX#HASH 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 message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12785) cli v7 cannot add plugin via git+ssh

2017-05-11 Thread Audrey So (JIRA)

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

Audrey So updated CB-12785:
---
Priority: Minor  (was: Major)

> cli v7 cannot add plugin via git+ssh
> 
>
> Key: CB-12785
> URL: https://issues.apache.org/jira/browse/CB-12785
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli
>Affects Versions: 6.0.0, 7.0.0, 6.5.0
> Environment: Ubuntu 16.04 x64
>Reporter: Chris Hunt
>Priority: Minor
>  Labels: cordova-8.0.0
>
> In previous versions (including 6.5), the following command would work:
> cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH
> This appears to be broken in v7; it results in the following error:
> Error: Failed to fetch plugin ssh://g...@github.com/XXX/XXX#HASH 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 message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12785) cli v7 cannot add plugin via git+ssh

2017-05-11 Thread Audrey So (JIRA)

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

Audrey So updated CB-12785:
---
Affects Version/s: 6.5.0
   6.0.0

> cli v7 cannot add plugin via git+ssh
> 
>
> Key: CB-12785
> URL: https://issues.apache.org/jira/browse/CB-12785
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli
>Affects Versions: 6.0.0, 7.0.0, 6.5.0
> Environment: Ubuntu 16.04 x64
>Reporter: Chris Hunt
>  Labels: cordova-8.0.0
>
> In previous versions (including 6.5), the following command would work:
> cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH
> This appears to be broken in v7; it results in the following error:
> Error: Failed to fetch plugin ssh://g...@github.com/XXX/XXX#HASH 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 message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12793) Coho Release May 11, 2017

2017-05-11 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on CB-12793:
--

Commit 3f2e16cc3cb38838c168f11f5eae571d8afd2465 in cordova-coho's branch 
refs/heads/master from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-coho.git;h=3f2e16c ]

CB-12793 Updated version and RELEASENOTES.md for release 1.0.0


> Coho Release May 11, 2017
> -
>
> Key: CB-12793
> URL: https://issues.apache.org/jira/browse/CB-12793
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-coho
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>
> Following steps at 
> https://github.com/apache/cordova-coho/blob/master/docs/coho-release-process.md



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12793) Coho Release May 11, 2017

2017-05-11 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on CB-12793:
--

Commit 4151a216e8fdd3dc9d895444b7328387d9311876 in cordova-coho's branch 
refs/heads/master from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-coho.git;h=4151a21 ]

CB-12793 Incremented package version to -dev


> Coho Release May 11, 2017
> -
>
> Key: CB-12793
> URL: https://issues.apache.org/jira/browse/CB-12793
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-coho
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>
> Following steps at 
> https://github.com/apache/cordova-coho/blob/master/docs/coho-release-process.md



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12793) Coho Release May 11, 2017

2017-05-11 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-12793:
-

 Summary: Coho Release May 11, 2017
 Key: CB-12793
 URL: https://issues.apache.org/jira/browse/CB-12793
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-coho
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah


Following steps at 
https://github.com/apache/cordova-coho/blob/master/docs/coho-release-process.md



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12792) Concat all the js files of weinre client into one bound

2017-05-11 Thread unbug (JIRA)

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

unbug commented on CB-12792:


Is there a build tool for https://www.npmjs.com/package/modjewel ?

> Concat all the js files of weinre client into one bound
> ---
>
> Key: CB-12792
> URL: https://issues.apache.org/jira/browse/CB-12792
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: cordova-weinre
>Affects Versions: cordova@7.0.0
> Environment: ALL
>Reporter: unbug
>Assignee: Patrick Mueller
>Priority: Blocker
>  Labels: build
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> It's took too long to load the client with more than 140+ js files from a 
> remote server, and event it done loading, the socket already lost. It's 
> better to have a concat bound for the client.
> 1. Prove a default bound.
> 2. Prove a npm build task to build the bound manually.
> 3. Prove a npm build task to minify the bound.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12792) Concat all the js files of weinre client into one bound

2017-05-11 Thread Patrick Mueller (JIRA)

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

Patrick Mueller commented on CB-12792:
--

This seems like something worth fixing, for any downstream uses of weinre, and 
especially over slow networks.

Since I'm not actively working on weinre at the moment, someone will have to 
provide a PR.

> Concat all the js files of weinre client into one bound
> ---
>
> Key: CB-12792
> URL: https://issues.apache.org/jira/browse/CB-12792
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: cordova-weinre
>Affects Versions: cordova@7.0.0
> Environment: ALL
>Reporter: unbug
>Assignee: Patrick Mueller
>Priority: Blocker
>  Labels: build
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> It's took too long to load the client with more than 140+ js files from a 
> remote server, and event it done loading, the socket already lost. It's 
> better to have a concat bound for the client.
> 1. Prove a default bound.
> 2. Prove a npm build task to build the bound manually.
> 3. Prove a npm build task to minify the bound.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12792) Concat all the js files of weinre client into one bound

2017-05-11 Thread unbug (JIRA)

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

unbug updated CB-12792:
---
Description: 
It's took too long to load the client with more than 140+ js files from a 
remote server, and event it done loading, the socket already lost. It's better 
to have a concat bound for the client.
1. Prove a default bound.
2. Prove a npm build task to build the bound manually.
3. Prove a npm build task to minify the bound.

  was:It's took too long to load the client with more than 140+ js files from a 
remote server, and event it done loading, the socket already lost. It's better 
to have a concat bound for the client.


> Concat all the js files of weinre client into one bound
> ---
>
> Key: CB-12792
> URL: https://issues.apache.org/jira/browse/CB-12792
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: cordova-weinre
>Affects Versions: cordova@7.0.0
> Environment: ALL
>Reporter: unbug
>Assignee: Patrick Mueller
>Priority: Blocker
>  Labels: build
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> It's took too long to load the client with more than 140+ js files from a 
> remote server, and event it done loading, the socket already lost. It's 
> better to have a concat bound for the client.
> 1. Prove a default bound.
> 2. Prove a npm build task to build the bound manually.
> 3. Prove a npm build task to minify the bound.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12792) Concat all the js files of weinre client into one bound

2017-05-11 Thread unbug (JIRA)
unbug created CB-12792:
--

 Summary: Concat all the js files of weinre client into one bound
 Key: CB-12792
 URL: https://issues.apache.org/jira/browse/CB-12792
 Project: Apache Cordova
  Issue Type: New Feature
  Components: cordova-weinre
Affects Versions: cordova@7.0.0
 Environment: ALL
Reporter: unbug
Assignee: Patrick Mueller
Priority: Blocker


It's took too long to load the client with more than 140+ js files from a 
remote server, and event it done loading, the socket already lost. It's better 
to have a concat bound for the client.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12790) iOS: locking to landscape-(primary|secondary) inconsistent with screen.orientation.type

2017-05-11 Thread Jason Vertucio (JIRA)

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

Jason Vertucio updated CB-12790:

Summary: iOS: locking to landscape-(primary|secondary) inconsistent with 
screen.orientation.type  (was: Party time )

> iOS: locking to landscape-(primary|secondary) inconsistent with 
> screen.orientation.type
> ---
>
> Key: CB-12790
> URL: https://issues.apache.org/jira/browse/CB-12790
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-screen-orientation
>Reporter: Jason Vertucio
> Attachments: cordova_info.txt, index.js, index.js
>
>
> For me, using cordova-plugin-screen-orientation@2.0.1, 
> {{screen.orientation.lock('landscape')}} works to lock the device into 
> landscape mode. However, a new issue appears if I try to lock to 
> "landscape-primary" or "landscape-secondary."
> *Desired functionality:*
> # iOS device is initially locked in "portrait-primary" mode
> # User is required to turn device to landscape mode, so 
> {{screen.orientation.lock('landscape');}} is called
> # App should stick with orientation it went to, so if user turns phone upside 
> down, it doesn't flip orientation
> *To achieve this:*
> Using the _Hello Cordova_ app, I do the following to {{index.js}}
> {code}
> // Add this to the receivedEvent() method
> console.log('Received Event: ' + id);
> window.addEventListener('orientationchange',app.orientationChanged);
> // Then add this to index.js after receivedEvent() method
> orientationChanged: function() {
> console.log("Orientation changed to " + screen.orientation.type);
> console.log("Locking orientation to " + screen.orientation.type);
> screen.orientation.lock(screen.orientation.type);
> }
> {code}
> *Actual functionality:*
> When the app is run, instead of locking to a landscape mode and staying in 
> place, it locks into landscape mode and then spins like it's _party time!_



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12790) Party time

2017-05-11 Thread Jason Vertucio (JIRA)

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

Jason Vertucio updated CB-12790:

Attachment: index.js

I am so sorry to do this, but apparently the plugin
* lists {{screen.orientation.type == 'landscape-primary'}} when device is 
turned 90º counter-clockwise
* lists {{screen.orientation.type == 'landscape-secondary'}} when device is 
turned 90º clockwise
* sets {{screen.orientation.lock('landscape-primary')}} to device turned 90º 
clockwise
* sets {{screen.orientation.lock('landscape-secondary')}} to device turned 90º 
counter-clockwise

the newer index.js file will indicate this bug.

> Party time 
> ---
>
> Key: CB-12790
> URL: https://issues.apache.org/jira/browse/CB-12790
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-screen-orientation
>Reporter: Jason Vertucio
> Attachments: cordova_info.txt, index.js, index.js
>
>
> For me, using cordova-plugin-screen-orientation@2.0.1, 
> {{screen.orientation.lock('landscape')}} works to lock the device into 
> landscape mode. However, a new issue appears if I try to lock to 
> "landscape-primary" or "landscape-secondary."
> *Desired functionality:*
> # iOS device is initially locked in "portrait-primary" mode
> # User is required to turn device to landscape mode, so 
> {{screen.orientation.lock('landscape');}} is called
> # App should stick with orientation it went to, so if user turns phone upside 
> down, it doesn't flip orientation
> *To achieve this:*
> Using the _Hello Cordova_ app, I do the following to {{index.js}}
> {code}
> // Add this to the receivedEvent() method
> console.log('Received Event: ' + id);
> window.addEventListener('orientationchange',app.orientationChanged);
> // Then add this to index.js after receivedEvent() method
> orientationChanged: function() {
> console.log("Orientation changed to " + screen.orientation.type);
> console.log("Locking orientation to " + screen.orientation.type);
> screen.orientation.lock(screen.orientation.type);
> }
> {code}
> *Actual functionality:*
> When the app is run, instead of locking to a landscape mode and staying in 
> place, it locks into landscape mode and then spins like it's _party time!_



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12791) Loaded app interacts with website in InAppBrowser

2017-05-11 Thread Christian Tschanz (JIRA)
Christian Tschanz created CB-12791:
--

 Summary: Loaded app interacts with website in InAppBrowser
 Key: CB-12791
 URL: https://issues.apache.org/jira/browse/CB-12791
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-plugin-inappbrowser
 Environment: iOS
Reporter: Christian Tschanz


I noticed a very strange issue with the InAppBrowser on at least iOS (we use 
CrossWalk on Android so the issue is probably not applicable there):
In a completely empty cordova starter project with the IAB, I can open a page 
and everything behaves as expected.

When I open the same page using the IAB when my whole Angular 1.x app is 
running, I can not interact predictable with the website in the IAB. Most 
clicks get ignored, or work only sporadic.

I tried to remove all the plugins from the project but the issue persists. Only 
when not loading the angular app, then the website in the IAB works.

It looks like the currently loaded app can influence the website loaded in the 
IAB.

I have not yet found out what the root issue is as there are not debuggable 
error messages thrown but I assume this is not intended behaviour.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12790) Party time

2017-05-11 Thread Jason Vertucio (JIRA)

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

Jason Vertucio updated CB-12790:

Attachment: cordova_info.txt
index.js

I've attached my index.js and a copy of {{cordova info}}'s output.

> Party time 
> ---
>
> Key: CB-12790
> URL: https://issues.apache.org/jira/browse/CB-12790
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-screen-orientation
>Reporter: Jason Vertucio
> Attachments: cordova_info.txt, index.js
>
>
> For me, using cordova-plugin-screen-orientation@2.0.1, 
> {{screen.orientation.lock('landscape')}} works to lock the device into 
> landscape mode. However, a new issue appears if I try to lock to 
> "landscape-primary" or "landscape-secondary."
> *Desired functionality:*
> # iOS device is initially locked in "portrait-primary" mode
> # User is required to turn device to landscape mode, so 
> {{screen.orientation.lock('landscape');}} is called
> # App should stick with orientation it went to, so if user turns phone upside 
> down, it doesn't flip orientation
> *To achieve this:*
> Using the _Hello Cordova_ app, I do the following to {{index.js}}
> {code}
> // Add this to the receivedEvent() method
> console.log('Received Event: ' + id);
> window.addEventListener('orientationchange',app.orientationChanged);
> // Then add this to index.js after receivedEvent() method
> orientationChanged: function() {
> console.log("Orientation changed to " + screen.orientation.type);
> console.log("Locking orientation to " + screen.orientation.type);
> screen.orientation.lock(screen.orientation.type);
> }
> {code}
> *Actual functionality:*
> When the app is run, instead of locking to a landscape mode and staying in 
> place, it locks into landscape mode and then spins like it's _party time!_



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12790) Party time

2017-05-11 Thread Jason Vertucio (JIRA)
Jason Vertucio created CB-12790:
---

 Summary: Party time 
 Key: CB-12790
 URL: https://issues.apache.org/jira/browse/CB-12790
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-plugin-screen-orientation
Reporter: Jason Vertucio


For me, using cordova-plugin-screen-orientation@2.0.1, 
{{screen.orientation.lock('landscape')}} works to lock the device into 
landscape mode. However, a new issue appears if I try to lock to 
"landscape-primary" or "landscape-secondary."

*Desired functionality:*
# iOS device is initially locked in "portrait-primary" mode
# User is required to turn device to landscape mode, so 
{{screen.orientation.lock('landscape');}} is called
# App should stick with orientation it went to, so if user turns phone upside 
down, it doesn't flip orientation

*To achieve this:*
Using the _Hello Cordova_ app, I do the following to {{index.js}}
{code}
// Add this to the receivedEvent() method
console.log('Received Event: ' + id);
window.addEventListener('orientationchange',app.orientationChanged);

// Then add this to index.js after receivedEvent() method
orientationChanged: function() {
console.log("Orientation changed to " + screen.orientation.type);
console.log("Locking orientation to " + screen.orientation.type);
screen.orientation.lock(screen.orientation.type);
}
{code}

*Actual functionality:*
When the app is run, instead of locking to a landscape mode and staying in 
place, it locks into landscape mode and then spins like it's _party time!_





--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12511) make iOS rotate as needed when screen.orientation.lock('landscape'); is called

2017-05-11 Thread Jason Vertucio (JIRA)

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

Jason Vertucio commented on CB-12511:
-

Working as of version 2.0.1. Please ensure that on this new version, 'bug' is 
still present.

> make iOS rotate as needed when screen.orientation.lock('landscape'); is called
> --
>
> Key: CB-12511
> URL: https://issues.apache.org/jira/browse/CB-12511
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-screen-orientation
>Reporter: Vetrivel
>Assignee: Kerri Shotts
>  Labels: iOS, iOS10
>
> In my App, I have installed the "apache/cordova-plugin-screen-orientation" 
> and I have set screen.orientation.lock('landscape'); to Lock Landscape view. 
> But at first time in IPad (ios@10), If the user view in portrait view once 
> "screen.orientation.lock('landscape');" is called it is not rotate to 
> landscape view instead of that it stay in portrait view. But in other device 
> it is working as excepted. How to get rid of this issue.When i can expect the 
> updated release.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12738) cordova ignores plugin dependency version

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12738:
-

Github user matrosov-nikita commented on the issue:

https://github.com/apache/cordova-lib/pull/554
  
I'm investigating what's causing CI failures.


> cordova ignores plugin dependency version
> -
>
> Key: CB-12738
> URL: https://issues.apache.org/jira/browse/CB-12738
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli, cordova-lib
>Reporter: Marcus Pridham
>
> You can see this with the cordova-plugin-file-transfer.  When you install 
> this plugin and it installs the cordova-plugin-file plugin dependency the CLI 
> writes
> Fetching plugin "cordova-plugin-file" via npm
> The first problem is in the PluginInfo _parseDependency function
> https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;a=blob;f=cordova-common/src/PluginInfo/PluginInfo.js;h=48174707b0dbf6f60eb65faeb14c51e4b3868b1b;hb=HEAD#l108
> It does not parse out the dependency version.  This part:
> {code}
> var dep =
> { id : tag.attrib.id
> , url : tag.attrib.url || ''
> , subdir : tag.attrib.subdir || ''
> , commit : tag.attrib.commit
> };
> {code}
> Should be:
> {code}
> var dep =
> { id : tag.attrib.id
> , url : tag.attrib.url || ''
> , subdir : tag.attrib.subdir || ''
> , commit : tag.attrib.commit
> , version : tag.attrib.version
> };
> {code}  
> The second problem is in the plugman installDependency method
> https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;a=blob;f=cordova-lib/src/plugman/install.js;h=fca77c688d2b8f19ce63cb176f50ecd44c9a9032;hb=HEAD#l603
> The dep_src is only constructed using the plugin id.
> This:
> {code}
> var dep_src = dep.url.length ? dep.url : dep.id;
> {code}
> Should look something like:
> {code}
> var dep_src;
> if (dep.url.length) {
> dep_src = dep.url;
> }
> else if (dep.version) {
> dep_src = dep.id + '@' + dep.version;
> } else {
> dep_src = dep.id;
> } 
> {code}
> With these changes the Cordova CLI correctly reports:
> Fetching plugin "cordova-plugin-file@^4.0.0" via npm



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12786) Improve logic for searching plugin id in case of module already exists in node_modules

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12786:
-

Github user matrosov-nikita commented on the issue:

https://github.com/apache/cordova-lib/pull/555
  
I'm investigating what's causing CI failures.


> Improve logic for searching plugin id in case of module already exists in 
> node_modules
> --
>
> Key: CB-12786
> URL: https://issues.apache.org/jira/browse/CB-12786
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-fetch
>Affects Versions: 1.1.0
> Environment:  cordova-7.0.2-dev
>Reporter: Nikita Matrosov
>Assignee: Nikita Matrosov
>
> Steps to reproduce
> There is the issue with searching plugin id if the module already exists in 
> node_modules.
> cordova create sample
> cordova platform add android
> cordova plugin add cordova-plugin-ms-adal
> cordova plugin add ../azure-activedirectory-library-for-cordova (use local 
> folder)
> Get error message:
> Error: Failed to get absolute path to installed module
> This error occurs since folder name in node_modules (cordova-plugin-ms-adal) 
> differs from base name of installation folder 
> (azure-activedirectory-library-for-cordova).
> PR: https://github.com/apache/cordova-lib/pull/555



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12789) Use pnpm instead of npm when adding plugins

2017-05-11 Thread Lynchmaniac (JIRA)
Lynchmaniac created CB-12789:


 Summary: Use pnpm instead of npm when adding plugins
 Key: CB-12789
 URL: https://issues.apache.org/jira/browse/CB-12789
 Project: Apache Cordova
  Issue Type: Wish
  Components: AllPlugins
Affects Versions: cordova@7.0.0
Reporter: Lynchmaniac
Priority: Minor


pnpm is a fast, disk space efficient npm installs https://github.com/pnpm/pnpm

What can be the effort to propose the choice between npm and pnpm to the user ?
pnpm is not a wrapper to npm. It handles dependencies using symbolic links so 
it's not compatible. But pnpm is much faster than npm and yarn or what I could 
test.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12788) Crash on android when saving contact

2017-05-11 Thread Cyrille Colin (JIRA)
Cyrille Colin created CB-12788:
--

 Summary: Crash on android when saving contact
 Key: CB-12788
 URL: https://issues.apache.org/jira/browse/CB-12788
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-plugin-contacts
Affects Versions: 2.3.1-dev
 Environment: Cordova : 6.1.1 via meteor
Android : 5.0.1 on Samsung S4 GT-I9506
Reporter: Cyrille Colin


Hi,
first i'm not sure about version, i use the one in npm and github : 2.3.1 but 
it doesn't reflect version in issue tracker.
Step to reproduce :

var contact = navigator.contacts.create({
  id: "12345",
  displayName: "John Doe",
  emails: [new ContactField('work', "j...@doe.com", true)]
});

contact.save(); crash with this stack trace :

05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
rawId is string called 'null'
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
Could not get name
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
Could not get phone numbers
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
id is string called 'null'
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
Could not get addresses
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
Could not get organizations
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
Could not get emails
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
note is string called 'null'
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
nickname is string called 'null'
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
Could not get websites
05-11 15:18:58.643 24995-4607/fr.univlorraine.mobile.multi E/ContactsAccessor: 
Could not get birthday from JSON object
   
org.json.JSONException: Value null at birthday of type org.json.JSONObject$1 
cannot be converted to long

   at org.json.JSON.typeMismatch(JSON.java:100)

   at org.json.JSONObject.getLong(JSONObject.java:517)

   at 
org.apache.cordova.contacts.ContactAccessorSdk5.getBirthday(ContactAccessorSdk5.java:1959)

   at 
org.apache.cordova.contacts.ContactAccessorSdk5.modifyContact(ContactAccessorSdk5.java:1471)

   at 
org.apache.cordova.contacts.ContactAccessorSdk5.save(ContactAccessorSdk5.java:1071)

   at org.apache.cordova.contacts.ContactManager$2.run(ContactManager.java:186)

   at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)

   at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)

   at java.lang.Thread.run(Thread.java:818)
05-11 15:18:58.653 24995-4607/fr.univlorraine.mobile.multi D/ContactsAccessor: 
Could not get photos
05-11 15:18:58.713 24995-4607/fr.univlorraine.mobile.multi E/AndroidRuntime: 
FATAL EXCEPTION: pool-1-thread-3
 
Process: fr.univlorraine.mobile.multi, PID: 24995
 
java.lang.NullPointerException: Attempt to invoke virtual method 'long 
java.lang.Long.longValue()' on a null object reference

 at android.os.Parcel.readException(Parcel.java:1546)

 at 
android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:185)

 at 
android.database.DatabaseUtils.readExceptionWithOperationApplicationExceptionFromParcel(DatabaseUtils.java:160)

 at 
android.content.ContentProviderProxy.applyBatch(ContentProviderNative.java:519)

 at 

[jira] [Commented] (CB-11858) Add possibility to utilize Android M feature "LightStatusBar"

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11858:
-

Github user cordova-qa commented on the issue:

https://github.com/apache/cordova-plugin-statusbar/pull/64
  
Cordova CI Build has completed successfully.

**Commit** - 
[Link](https://github.com/apache/cordova-plugin-statusbar/pull/64/commits/abc46a7a63777eef170c610541047f503f7bd08f)
**Dashboard** - 
[Link](http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-statusbar-pr/52/)

 24 tests run, 0 skipped, 0 failed.



> Add possibility to utilize Android M feature "LightStatusBar"
> -
>
> Key: CB-11858
> URL: https://issues.apache.org/jira/browse/CB-11858
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-plugin-statusbar
>Affects Versions: 2.2.0
> Environment: Android
>Reporter: Tobias Viehweger
>Priority: Minor
>  Labels: easyfix
>
> Since Android M, it's supported to have a light status bar, which will have 
> black text, instead of white text. That allows to have status bar backgrounds 
> that might be lighter than before.
> There is already something similar for iOS (StatusBarStyle), so it would be 
> easy to add. I already have the code here 
> (https://github.com/sovanta/cordova-plugin-statusbar/commit/ef318e777d50918aeb9f7d86bb29a759dd8d3830),
>  I just need to go through the ICLA signing.. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-11858) Add possibility to utilize Android M feature "LightStatusBar"

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11858:
-

Github user cordova-qa commented on the issue:

https://github.com/apache/cordova-plugin-statusbar/pull/64
  
Cordova CI Build has completed successfully.

**Commit** - 
[Link](https://github.com/apache/cordova-plugin-statusbar/pull/64/commits/d84388013ab32fb848d67ebfc58ad828ea4cd4b5)
**Dashboard** - 
[Link](http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-statusbar-pr/51/)

 24 tests run, 0 skipped, 0 failed.



> Add possibility to utilize Android M feature "LightStatusBar"
> -
>
> Key: CB-11858
> URL: https://issues.apache.org/jira/browse/CB-11858
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-plugin-statusbar
>Affects Versions: 2.2.0
> Environment: Android
>Reporter: Tobias Viehweger
>Priority: Minor
>  Labels: easyfix
>
> Since Android M, it's supported to have a light status bar, which will have 
> black text, instead of white text. That allows to have status bar backgrounds 
> that might be lighter than before.
> There is already something similar for iOS (StatusBarStyle), so it would be 
> easy to add. I already have the code here 
> (https://github.com/sovanta/cordova-plugin-statusbar/commit/ef318e777d50918aeb9f7d86bb29a759dd8d3830),
>  I just need to go through the ICLA signing.. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-11858) Add possibility to utilize Android M feature "LightStatusBar"

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11858:
-

Github user cordova-qa commented on the issue:

https://github.com/apache/cordova-plugin-statusbar/pull/64
  
Cordova CI Build has completed successfully.

**Commit** - 
[Link](https://github.com/apache/cordova-plugin-statusbar/pull/64/commits/374203281b46f2c6532957e5edee7f784280b988)
**Dashboard** - 
[Link](http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-statusbar-pr/50/)

 24 tests run, 0 skipped, 0 failed.



> Add possibility to utilize Android M feature "LightStatusBar"
> -
>
> Key: CB-11858
> URL: https://issues.apache.org/jira/browse/CB-11858
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-plugin-statusbar
>Affects Versions: 2.2.0
> Environment: Android
>Reporter: Tobias Viehweger
>Priority: Minor
>  Labels: easyfix
>
> Since Android M, it's supported to have a light status bar, which will have 
> black text, instead of white text. That allows to have status bar backgrounds 
> that might be lighter than before.
> There is already something similar for iOS (StatusBarStyle), so it would be 
> easy to add. I already have the code here 
> (https://github.com/sovanta/cordova-plugin-statusbar/commit/ef318e777d50918aeb9f7d86bb29a759dd8d3830),
>  I just need to go through the ICLA signing.. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-11858) Add possibility to utilize Android M feature "LightStatusBar"

2017-05-11 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11858:
-

Github user cordova-qa commented on the issue:

https://github.com/apache/cordova-plugin-statusbar/pull/64
  
Cordova CI Build has completed successfully.

**Commit** - 
[Link](https://github.com/apache/cordova-plugin-statusbar/pull/64/commits/e6e914759313ff7681d25f6d26e2268f690f7659)
**Dashboard** - 
[Link](http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-statusbar-pr/49/)

 24 tests run, 0 skipped, 0 failed.



> Add possibility to utilize Android M feature "LightStatusBar"
> -
>
> Key: CB-11858
> URL: https://issues.apache.org/jira/browse/CB-11858
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-plugin-statusbar
>Affects Versions: 2.2.0
> Environment: Android
>Reporter: Tobias Viehweger
>Priority: Minor
>  Labels: easyfix
>
> Since Android M, it's supported to have a light status bar, which will have 
> black text, instead of white text. That allows to have status bar backgrounds 
> that might be lighter than before.
> There is already something similar for iOS (StatusBarStyle), so it would be 
> easy to add. I already have the code here 
> (https://github.com/sovanta/cordova-plugin-statusbar/commit/ef318e777d50918aeb9f7d86bb29a759dd8d3830),
>  I just need to go through the ICLA signing.. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12787) cordova@7 plugin add --link is broken

2017-05-11 Thread Steve Gill (JIRA)

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

Steve Gill updated CB-12787:

Labels: cordova-8.0.0  (was: )

> cordova@7 plugin add --link is broken
> -
>
> Key: CB-12787
> URL: https://issues.apache.org/jira/browse/CB-12787
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-fetch, cordova-lib
>Affects Versions: 7.0.0
>Reporter: Steve Gill
>  Labels: cordova-8.0.0
>
> with the change to cordova-fetch for local paths, cordova plugin add 
> SOMELOCALPATH --link doesn't work anymore. 
> The plugin first gets `npm installed` into your cordova project (so it now 
> lives in node_modules), and then it gets copied into your plugins directory. 
> During the copy to your plugins directory step, that is when the symlink gets 
> created. So the symlink points to your node_modules/PLUGINDIR and not the 
> local path to your plugin.
> I believe the solution to fixing this would be to `npm link` the plugin 
> instead of `npm install` when adding it with `--link` flag. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12787) cordova@7 plugin add --link is broken

2017-05-11 Thread Steve Gill (JIRA)
Steve Gill created CB-12787:
---

 Summary: cordova@7 plugin add --link is broken
 Key: CB-12787
 URL: https://issues.apache.org/jira/browse/CB-12787
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-fetch, cordova-lib
Affects Versions: 7.0.0
Reporter: Steve Gill


with the change to cordova-fetch for local paths, cordova plugin add 
SOMELOCALPATH --link doesn't work anymore. 

The plugin first gets `npm installed` into your cordova project (so it now 
lives in node_modules), and then it gets copied into your plugins directory. 
During the copy to your plugins directory step, that is when the symlink gets 
created. So the symlink points to your node_modules/PLUGINDIR and not the local 
path to your plugin.

I believe the solution to fixing this would be to `npm link` the plugin instead 
of `npm install` when adding it with `--link` flag. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12786) Improve logic for searching plugin id in case of module already exists in node_modules

2017-05-11 Thread Nikita Matrosov (JIRA)
Nikita Matrosov created CB-12786:


 Summary: Improve logic for searching plugin id in case of module 
already exists in node_modules
 Key: CB-12786
 URL: https://issues.apache.org/jira/browse/CB-12786
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-fetch
Affects Versions: 1.1.0
 Environment:  cordova-7.0.2-dev
Reporter: Nikita Matrosov
Assignee: Nikita Matrosov


Steps to reproduce
There is the issue with searching plugin id if the module already exists in 
node_modules.

cordova create sample
cordova platform add android
cordova plugin add cordova-plugin-ms-adal
cordova plugin add ../azure-activedirectory-library-for-cordova (use local 
folder)

Get error message:
Error: Failed to get absolute path to installed module
This error occurs since folder name in node_modules (cordova-plugin-ms-adal) 
differs from base name of installation folder 
(azure-activedirectory-library-for-cordova).

PR: https://github.com/apache/cordova-lib/pull/555



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12785) cli v7 cannot add plugin via git+ssh

2017-05-11 Thread Steve Gill (JIRA)

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

Steve Gill updated CB-12785:

Priority: Major  (was: Blocker)

> cli v7 cannot add plugin via git+ssh
> 
>
> Key: CB-12785
> URL: https://issues.apache.org/jira/browse/CB-12785
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli
>Affects Versions: 7.0.0
> Environment: Ubuntu 16.04 x64
>Reporter: Chris Hunt
>  Labels: cordova-8.0.0
>
> In previous versions (including 6.5), the following command would work:
> cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH
> This appears to be broken in v7; it results in the following error:
> Error: Failed to fetch plugin ssh://g...@github.com/XXX/XXX#HASH 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 message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12361) Speed up cordova-lib tests

2017-05-11 Thread Steve Gill (JIRA)

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

Steve Gill updated CB-12361:

Labels: cordova-8.0.0  (was: cordova-7.0.0)

> Speed up cordova-lib tests
> --
>
> Key: CB-12361
> URL: https://issues.apache.org/jira/browse/CB-12361
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-lib
>Reporter: Steve Gill
>Assignee: Steve Gill
>  Labels: cordova-8.0.0
>
> * Split out e2e tests into own folder
> * stub i/o and network requests
> * use local fixtures when possible & makes sense



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-10063) cordova-cli 5.4.0 bug with PList creation

2017-05-11 Thread Steve Gill (JIRA)

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

Steve Gill updated CB-10063:

Labels: cordova-8.0.0  (was: cordova-7.0.0)

> cordova-cli 5.4.0 bug with PList creation
> -
>
> Key: CB-10063
> URL: https://issues.apache.org/jira/browse/CB-10063
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli, cordova-lib
>Affects Versions: 5.4.0
>Reporter: Gregor
>  Labels: cordova-8.0.0
>
> Our config.xml has this part in:
> {code:java}
> 
>   
>   
>parent="UISupportedInterfaceOrientations">
> 
>   UIInterfaceOrientationPortrait
>   UIInterfaceOrientationPortraitUpsideDown
> 
>   
>parent="UISupportedInterfaceOrientations~ipad">
> 
>   UIInterfaceOrientationPortrait
>   UIInterfaceOrientationLandscapeLeft
>   UIInterfaceOrientationPortraitUpsideDown
>   UIInterfaceOrientationLandscapeRight
> 
>   
> 
> {code}
> With Cordova 5.4.0 installed, PList gets generated, but there is no part with 
> orientation options in. Removing 5.4.0 and installing 5.3.3, everything 
> functions as should. 
> Looking at update_platform_config.js hook and echoing this line out 
> {code:java}
> fs.writeFileSync(targetFile, tempInfoPlist, 'utf-8');
> {code}
> You will see in console, the part with orientation is in. Also, if you save 
> this exact same string into some new generic file, it will be successfully 
> saved. However, the original platforms/ios/myapp/myapp.plist file won't 
> include the orientation part.
> This is a serious bug and a huge issue for us. Going to buggy 5.3.3 is a huge 
> step down for us, and not having this orientation in 5.4.0 is another.
> I don't know if there's actually anyone alive here, but I surely hope, 
> someone will someday found this ticket and say "hey.. look.. we aren't the 
> only ones that have the problem with the orientation thing on ios"
> Regards.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12785) cli v7 cannot add plugin via git+ssh

2017-05-11 Thread Steve Gill (JIRA)

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

Steve Gill updated CB-12785:

Labels: cordova-8.0.0  (was: )

> cli v7 cannot add plugin via git+ssh
> 
>
> Key: CB-12785
> URL: https://issues.apache.org/jira/browse/CB-12785
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli
>Affects Versions: 7.0.0
> Environment: Ubuntu 16.04 x64
>Reporter: Chris Hunt
>Priority: Blocker
>  Labels: cordova-8.0.0
>
> In previous versions (including 6.5), the following command would work:
> cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH
> This appears to be broken in v7; it results in the following error:
> Error: Failed to fetch plugin ssh://g...@github.com/XXX/XXX#HASH 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 message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12756) Cordova@7 does not prompt for password when installing from private git repo

2017-05-11 Thread Steve Gill (JIRA)

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

Steve Gill updated CB-12756:

Labels: cordova-8.0.0  (was: )

> Cordova@7 does not prompt for password when installing from private git repo
> 
>
> Key: CB-12756
> URL: https://issues.apache.org/jira/browse/CB-12756
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli
>Reporter: Darryl Pogue
>Priority: Minor
>  Labels: cordova-8.0.0
>
> When installing a plugin from a private git repo, Cordova 7 does not prompt 
> for a passphrase for git. The plugin fails to install.
> {code}
> Discovered plugin "private-cordova-plugin" in config.xml. Adding it to the 
> project
> Failed to restore plugin "private-cordova-plugin" from config.xml. You might 
> need to try adding it again. Error: Failed to fetch plugin 
> private-cordova-plugin@dpogue/private-cordova-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
(v6.3.15#6346)

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



[jira] [Commented] (CB-12782) [Windows] Install cordova plugins from private gitlab repository failed with status code 406.

2017-05-11 Thread Steve Gill (JIRA)

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

Steve Gill commented on CB-12782:
-

Probably related to https://issues.apache.org/jira/browse/CB-12756

> [Windows] Install cordova plugins from private gitlab repository failed with 
> status code 406. 
> --
>
> Key: CB-12782
> URL: https://issues.apache.org/jira/browse/CB-12782
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli, cordova-plugins, cordova-windows
>Affects Versions: 7.0.0
> Environment: Windows 7
> node v6.10.3
> npm v3.10.10
> cordova 7.0.0
>Reporter: Xu Chao
>  Labels: plugins
>
> When I install a cordova plugin from a private gitlab repositroy in Windows, 
> I get a HTTP 406 error. 
> However, the same plugin can be installed successfully in Mac. 
> I also tried the other two windows PC, but  without luck.
> The command I used:
> {quote}
> cordova plugin add http:///XXX/cordova-plugin-statusbar.git
> {quote}
> The errors from the console:
> {quote}
> Error: Failed to fetch plugin http://XXX/cordova-plugin-statusbar.git via 
> registry.
> Probably this is either a connection problem, or plugin spec is incorrect.
> Check your connection and plugin name/version/URL.
> Error: cmd: Command failed with exit code 1 Error output:
> npm ERR! fetch failed http://XXX/cordova-plugin-statusbar.git
> npm WARN retry will retry, error on last attempt: Error: fetch failed with 
> status code 406
> {quote}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12785) cli v7 cannot add plugin via git+ssh

2017-05-11 Thread Steve Gill (JIRA)

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

Steve Gill commented on CB-12785:
-

Thanks for the heads up. I'll try it out and see what the issue is

> cli v7 cannot add plugin via git+ssh
> 
>
> Key: CB-12785
> URL: https://issues.apache.org/jira/browse/CB-12785
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-cli
>Affects Versions: 7.0.0
> Environment: Ubuntu 16.04 x64
>Reporter: Chris Hunt
>Priority: Blocker
>
> In previous versions (including 6.5), the following command would work:
> cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH
> This appears to be broken in v7; it results in the following error:
> Error: Failed to fetch plugin ssh://g...@github.com/XXX/XXX#HASH 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 message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12785) cli v7 cannot add plugin via git+ssh

2017-05-11 Thread Chris Hunt (JIRA)
Chris Hunt created CB-12785:
---

 Summary: cli v7 cannot add plugin via git+ssh
 Key: CB-12785
 URL: https://issues.apache.org/jira/browse/CB-12785
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-cli
Affects Versions: 7.0.0
 Environment: Ubuntu 16.04 x64
Reporter: Chris Hunt
Priority: Blocker


In previous versions (including 6.5), the following command would work:

cordova plugin add git+ssh://g...@github.com/XXX/XXX.git#HASH

This appears to be broken in v7; it results in the following error:

Error: Failed to fetch plugin ssh://g...@github.com/XXX/XXX#HASH 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 message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12775) Length of paths are limited under windows

2017-05-11 Thread Florian Pechwitz (JIRA)

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

Florian Pechwitz commented on CB-12775:
---

[~Nikita Matrosov], I have already changed my registry. Proof: 
http://imgur.com/a/YR2XZ

> Length of paths are limited under windows
> -
>
> Key: CB-12775
> URL: https://issues.apache.org/jira/browse/CB-12775
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-file
> Environment: Android 7.1.2 / iOS 10.3.1 / Windows 10.0 (Build 15063)
>Reporter: Florian Pechwitz
>
> There is no limit for the length of paths under iOS and Android, only on 
> Windows. I build a project to reproduce the behavior.
> The project tries to create recursivly directories until 10 subdirectories 
> are created. 
> Repro steps:
> 1. Download this cordova project (https://files.itizzimo.com/f/bd119941c9/)
> 2. Add windows platform
> 3. Execute the project and run the automated tests
> What happens:
> When the file path length hits the limit of 260 characters, the application 
> can't create anymore directories. The test fails.
> What should happen:
> All tests succeed.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12775) Length of paths are limited under windows

2017-05-11 Thread Nikita Matrosov (JIRA)

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

Nikita Matrosov commented on CB-12775:
--

[~flop], it's limitation of OS rather than a plugin. Since windows10 you can 
enable long paths using registry tweak. See 
https://msdn.microsoft.com/en-us/library/aa365247(v=vs.85).aspx

> Length of paths are limited under windows
> -
>
> Key: CB-12775
> URL: https://issues.apache.org/jira/browse/CB-12775
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-file
> Environment: Android 7.1.2 / iOS 10.3.1 / Windows 10.0 (Build 15063)
>Reporter: Florian Pechwitz
>
> There is no limit for the length of paths under iOS and Android, only on 
> Windows. I build a project to reproduce the behavior.
> The project tries to create recursivly directories until 10 subdirectories 
> are created. 
> Repro steps:
> 1. Download this cordova project (https://files.itizzimo.com/f/bd119941c9/)
> 2. Add windows platform
> 3. Execute the project and run the automated tests
> What happens:
> When the file path length hits the limit of 260 characters, the application 
> can't create anymore directories. The test fails.
> What should happen:
> All tests succeed.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Comment Edited] (CB-12779) StatusBarOverlaysWebView to false does not work on iOS 10.3

2017-05-11 Thread JIRA

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

Thomas Fétiveau edited comment on CB-12779 at 5/11/17 7:59 AM:
---

It happens with latest plugin release cordova-plugin-statusbar 2.2.3.

The setting I'm using is in the config.xml :
```

```

That is working fine expect for latest version of iOS. I've actually spotted 
this bug in production when users started to update  iOS on their iPhones...

> Do you have other plugins installed? Do they work after moving to 10.3?

Yes I have other plugins and they all work fine even under iOS 10.3. This is a 
cordova-plugin-statusbar issue.


It should be easy to reproduce it at your end. Setup a cordova project with 
``. Test on iOS 
10.3 and you'll see that the status bar is actually overlaying the webview...



was (Author: zabojad):
It happens with latest plugin release cordova-plugin-statusbar 2.2.3.

The settings I'm using is in the config.xml :
```

```

That is working fine expect for latest version of iOS. I've actually spotted 
this bug in production when users started to update  iOS on their iPhones...

> Do you have other plugins installed? Do they work after moving to 10.3?

Yes I have other plugins and they all work fine even under iOS 10.3. This is a 
cordova-plugin-statusbar issue.


It should be easy to reproduce it at your end. Setup a cordova project with 
``. Test on iOS 
10.3 and you'll see that the status bar is actually overlaying the webview...


> StatusBarOverlaysWebView to false does not work on iOS 10.3
> ---
>
> Key: CB-12779
> URL: https://issues.apache.org/jira/browse/CB-12779
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-statusbar
>Reporter: Thomas Fétiveau
>
> After upgrading iPhone to iOS 10.3, the status bar plugin setting 
> StatusBarOverlaysWebView set to false does not work anymore.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Commented] (CB-12779) StatusBarOverlaysWebView to false does not work on iOS 10.3

2017-05-11 Thread JIRA

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

Thomas Fétiveau commented on CB-12779:
--

It happens with latest plugin release cordova-plugin-statusbar 2.2.3.

The settings I'm using is in the config.xml :
```

```

That is working fine expect for latest version of iOS. I've actually spotted 
this bug in production when users started to update  iOS on their iPhones...

> Do you have other plugins installed? Do they work after moving to 10.3?

Yes I have other plugins and they all work fine even under iOS 10.3. This is a 
cordova-plugin-statusbar issue.


It should be easy to reproduce it at your end. Setup a cordova project with 
``. Test on iOS 
10.3 and you'll see that the status bar is actually overlaying the webview...


> StatusBarOverlaysWebView to false does not work on iOS 10.3
> ---
>
> Key: CB-12779
> URL: https://issues.apache.org/jira/browse/CB-12779
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-statusbar
>Reporter: Thomas Fétiveau
>
> After upgrading iPhone to iOS 10.3, the status bar plugin setting 
> StatusBarOverlaysWebView set to false does not work anymore.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Created] (CB-12784) [Windows 10 Creators Update] "8.1-win" app crashes on start

2017-05-11 Thread Alexander Sorokin (JIRA)
Alexander Sorokin created CB-12784:
--

 Summary: [Windows 10 Creators Update] "8.1-win" app crashes on 
start
 Key: CB-12784
 URL: https://issues.apache.org/jira/browse/CB-12784
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-windows
Affects Versions: Master
 Environment: Windows 10 Creators Update (build 15063.250)
Cordova 7.0.0 or 7.0.1
Reporter: Alexander Sorokin


{noformat}
cordova create foo
cordova platform add windows
cordova run -- --appx=8.1-win
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (CB-12784) [Windows 10 Creators Update] "8.1-win" app crashes on start

2017-05-11 Thread Alexander Sorokin (JIRA)

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

Alexander Sorokin updated CB-12784:
---
Description: 
{noformat}
cordova create foo
cordova platform add windows
cordova run -- --appx=8.1-win
{noformat}

The stack trace is as follows:
{noformat}
App  terminated itself by calling terminateApp API. 
App details are as follows:  Display Name:, AppUserModelId: 
 Package 
Identity: PID:<16200>. 
The API was called from the context of the following HTML document:  
. Error object passed to terminateApp carried the following 
details Description:<{"description":"Element not 
found.\r\n","number":-2147023728,"stack":"WinRTError: Element not found.\r\n\n  
 at colorizeTitleBar 
(ms-appx://io.cordova.hellocordova/www/cordova.js:2083:9)\n   at show 
(ms-appx://io.cordova.hellocordova/www/cordova.js:2100:5)\n   at 
module.exports.firstShow 
(ms-appx://io.cordova.hellocordova/www/cordova.js:2236:13)\n   at Anonymous 
function (ms-appx://io.cordova.hellocordova/www/cordova.js:1619:21)\n   at 
notifySuccess (ms-appx://microsoft.winjs.2.0/js/base.js:1550:21)\n   at 
state_success_notify.enter (ms-appx://microsoft.winjs.2.0/js/base.js:1232:21)\n 
  at _run (ms-appx://microsoft.winjs.2.0/js/base.js:1448:17)\n   at _completed 
(ms-appx://microsoft.winjs.2.0/js/base.js:1416:13)\n   at notifySuccess 
(ms-appx://microsoft.winjs.2.0/js/base.js:1550:21)\n   at 
state_success_notify.enter 
(ms-appx://microsoft.winjs.2.0/js/base.js:1232:21)"}>, and Stack Trace:- 
WinRTError: Element not found.

   at colorizeTitleBar (ms-appx://io.cordova.hellocordova/www/cordova.js:2083:9)
   at show (ms-appx://io.cordova.hellocordova/www/cordova.js:2100:5)
   at module.exports.firstShow 
(ms-appx://io.cordova.hellocordova/www/cordova.js:2236:13)
   at Anonymous function 
(ms-appx://io.cordova.hellocordova/www/cordova.js:1619:21)
   at notifySuccess (ms-appx://microsoft.winjs.2.0/js/base.js:1550:21)
   at state_success_notify.enter 
(ms-appx://microsoft.winjs.2.0/js/base.js:1232:21)
   at _run (ms-appx://microsoft.winjs.2.0/js/base.js:1448:17)
   at _completed (ms-appx://microsoft.winjs.2.0/js/base.js:1416:13)
   at notifySuccess (ms-appx://microsoft.winjs.2.0/js/base.js:1550:21)
   at state_success_notify.enter 
(ms-appx://microsoft.winjs.2.0/js/base.js:1232:21)
.
{noformat}

  was:
{noformat}
cordova create foo
cordova platform add windows
cordova run -- --appx=8.1-win
{noformat}


> [Windows 10 Creators Update] "8.1-win" app crashes on start
> ---
>
> Key: CB-12784
> URL: https://issues.apache.org/jira/browse/CB-12784
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-windows
>Affects Versions: Master
> Environment: Windows 10 Creators Update (build 15063.250)
> Cordova 7.0.0 or 7.0.1
>Reporter: Alexander Sorokin
>
> {noformat}
> cordova create foo
> cordova platform add windows
> cordova run -- --appx=8.1-win
> {noformat}
> The stack trace is as follows:
> {noformat}
> App  terminated itself by calling terminateApp API. 
> App details are as follows:  Display Name:, AppUserModelId: 
>  Package 
> Identity: 
> PID:<16200>. The API was called from the context of the following HTML 
> document:  . Error object passed to terminateApp carried the 
> following details Description:<{"description":"Element not 
> found.\r\n","number":-2147023728,"stack":"WinRTError: Element not 
> found.\r\n\n   at colorizeTitleBar 
> (ms-appx://io.cordova.hellocordova/www/cordova.js:2083:9)\n   at show 
> (ms-appx://io.cordova.hellocordova/www/cordova.js:2100:5)\n   at 
> module.exports.firstShow 
> (ms-appx://io.cordova.hellocordova/www/cordova.js:2236:13)\n   at Anonymous 
> function (ms-appx://io.cordova.hellocordova/www/cordova.js:1619:21)\n   at 
> notifySuccess (ms-appx://microsoft.winjs.2.0/js/base.js:1550:21)\n   at 
> state_success_notify.enter 
> (ms-appx://microsoft.winjs.2.0/js/base.js:1232:21)\n   at _run 
> (ms-appx://microsoft.winjs.2.0/js/base.js:1448:17)\n   at _completed 
> (ms-appx://microsoft.winjs.2.0/js/base.js:1416:13)\n   at notifySuccess 
> (ms-appx://microsoft.winjs.2.0/js/base.js:1550:21)\n   at 
> state_success_notify.enter 
> (ms-appx://microsoft.winjs.2.0/js/base.js:1232:21)"}>, and Stack Trace:- 
> WinRTError: Element not found.
>at colorizeTitleBar 
> (ms-appx://io.cordova.hellocordova/www/cordova.js:2083:9)
>at show (ms-appx://io.cordova.hellocordova/www/cordova.js:2100:5)
>at module.exports.firstShow 
> (ms-appx://io.cordova.hellocordova/www/cordova.js:2236:13)
>at Anonymous function 
> (ms-appx://io.cordova.hellocordova/www/cordova.js:1619:21)
>at notifySuccess (ms-appx://microsoft.winjs.2.0/js/base.js:1550:21)
>at