[jira] [Created] (CB-10591) navigator.notification.prompt text box shrink

2016-02-10 Thread ukrit (JIRA)
ukrit created CB-10591:
--

 Summary: navigator.notification.prompt text box shrink
 Key: CB-10591
 URL: https://issues.apache.org/jira/browse/CB-10591
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Dialogs
Affects Versions: 1.2.1-dev
 Environment: iOS 9
Reporter: ukrit
Priority: Critical


the issue happens on iOS 9, the textbox become shrinked. And still not fix yet.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10584:
-

Github user vladimir-kotikov commented on a diff in the pull request:

https://github.com/apache/cordova-lib/pull/385#discussion_r52569334
  
--- Diff: cordova-lib/src/plugman/browserify.js ---
@@ -106,7 +106,7 @@ module.exports = function doBrowserify (project, 
platformApi, pluginInfoProvider
 commitId = cId;
 return getPlatformVersion(commitId, platformApi.root);
 }).then(function(platformVersion){
-var libraryRelease = bundle(platform, false, commitId, 
platformVersion);
+var libraryRelease = bundle(platform, false, commitId, 
platformVersion, wwwDir);
--- End diff --

Shouldn't we use `platform_www` directory here instead of `/www`?


> Splashscreen plugin crashes the app on windows 10 when built with browserify
> 
>
> Key: CB-10584
> URL: https://issues.apache.org/jira/browse/CB-10584
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen, Windows
>Affects Versions: 3.2.0
> Environment: Windows 10
>Reporter: Alexander Sorokin
>Assignee: Sergey Shakhnazarov
>Priority: Critical
>  Labels: Windows, Windows10
>
> {noformat}
> cordova create foo
> cd foo
> cordova platform add windows
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> add to config.xml:
> 
> cordova run --browserify
> {noformat}
> The app crashes right after start. Reported error message is: "WinJS is 
> undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-10562) hide() not working in latest splashscreen plug in 3.1.0 in iOS

2016-02-10 Thread Colin Bau (JIRA)

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

Colin Bau edited comment on CB-10562 at 2/11/16 4:51 AM:
-

hi [~bitflower]
I tried the 3.2.1-dev version in cordova 6.0.0 with iOS@4.0.1
the problem seem solved
please follow the step

step 1
cordova plugin rm cordova-plugin-splashscreen

step 2
cordova plugin add https://github.com/apache/cordova-plugin-splashscreen

step 3
cordova platform rm ios

step 4
cordova platform add ios

step 5
cordova build ios --device

it will generate a ipa file,I launch my app,the "hide" function work again

well...
as you mentioned that "couldn't start the app on the first run",I haven't face 
such kind of situation


was (Author: bau720123):
hi [~bitflower]
I tried the 3.2.1-dev version in cordova 6.0.0 with iOS@4.0.1
the problem seem solved
please follow the step

step 1
cordova plugin rm cordova-plugin-splashscreen

step 2
cordova plugin add https://github.com/apache/cordova-plugin-splashscreen

step 3
cordova platform rm ios

step 4
cordova platform add ios

step 5
cordova build ios --device

it will generate a ipa file,I launch my app,the "hide" function work again

> hide() not working in latest splashscreen plug in 3.1.0 in iOS
> --
>
> Key: CB-10562
> URL: https://issues.apache.org/jira/browse/CB-10562
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 3.1.0
> Environment: OSX Yosemite, iOS 9, iPhone 6, XCode 7.2.1, Cordova 
> 4.0.1, IONIC app, latest Cordova & IONIC CLIs
>Reporter: Matthias Max
>
> In version 3.0.0 the command navigator.splashscreen.hide(); works fine.
> With the new version 3.1.0 it simply doesn't close the splashscreen. The 
> splashscreen keeps on being displayed for the time set in the config.xml.
> config.xml:
>   
>   
>   
>   
>   
>   
>   
> JS:
> $ionicPlatform.ready(function() {
> // Hide splash screen
> if (navigator.splashscreen) {
>  navigator.splashscreen.hide();
> }
> });



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10562) hide() not working in latest splashscreen plug in 3.1.0 in iOS

2016-02-10 Thread Colin Bau (JIRA)

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

Colin Bau commented on CB-10562:


hi [~bitflower]
I tried the 3.2.1-dev version in cordova 6.0.0 with iOS@4.0.1
the problem seem solved
please follow the step

step 1
cordova plugin rm cordova-plugin-splashscreen

step 2
cordova plugin add https://github.com/apache/cordova-plugin-splashscreen

step 3
cordova platform rm ios

step 4
cordova platform add ios

step 5
cordova build ios --device

it will generate a ipa file,I launch my app,the "hide" function work again

> hide() not working in latest splashscreen plug in 3.1.0 in iOS
> --
>
> Key: CB-10562
> URL: https://issues.apache.org/jira/browse/CB-10562
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 3.1.0
> Environment: OSX Yosemite, iOS 9, iPhone 6, XCode 7.2.1, Cordova 
> 4.0.1, IONIC app, latest Cordova & IONIC CLIs
>Reporter: Matthias Max
>
> In version 3.0.0 the command navigator.splashscreen.hide(); works fine.
> With the new version 3.1.0 it simply doesn't close the splashscreen. The 
> splashscreen keeps on being displayed for the time set in the config.xml.
> config.xml:
>   
>   
>   
>   
>   
>   
>   
> JS:
> $ionicPlatform.ready(function() {
> // Hide splash screen
> if (navigator.splashscreen) {
>  navigator.splashscreen.hide();
> }
> });



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10552) Pull all the plugin docs to Cordova

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10552:
-

Github user dblotsky commented on the pull request:

https://github.com/apache/cordova-docs/pull/493#issuecomment-182702522
  
@stevengill @purplecabbage @csantanapr please take a look.


> Pull all the plugin docs to Cordova
> ---
>
> Key: CB-10552
> URL: https://issues.apache.org/jira/browse/CB-10552
> Project: Apache Cordova
>  Issue Type: Task
>Reporter: Sarangan Rajamanickam
>Assignee: Sarangan Rajamanickam
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

Github user ghenry22 commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/82#issuecomment-182673242
  
I have an audioplayer service which creates the media object with 
media.play().then statement.  In the then statement I wait for mediaStatus to 
hit 2 and then tell the service to respond that playing started.  mediaStatus 
changes to 2 when the stream starts playing.  Seems to work well.  The same 
behaviour works well in Android and Windows 10.


> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation  0x01bc3dc8 
> __CFRunLoopRun + 1032
>   15  CoreFoundation  0x01bc3706 
> CFRunLoopRunSpecific + 470
>   16  CoreFoundation  0x01bc351b 
> CFRunLoopRunInMode + 123
>   17  GraphicsServices0x05f2f664 
> GSEventRunModal + 192
>   18  GraphicsServices0x05f2f4a1 GSEventRun + 
> 104
>   19  UIKit   0x024801eb 
> UIApplicationMain + 160
>   20  mobilespec  0x000e42a9 main + 89
>   21  libdyld.dylib   0x04039a21 start + 1
>   )
> Feb  4 12:23:30 dbt

[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

Github user omefire commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/82#issuecomment-182671912
  
@ghenry22 , interesting.
What mediaStatus event lets you know when it's ready ?


> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation  0x01bc3dc8 
> __CFRunLoopRun + 1032
>   15  CoreFoundation  0x01bc3706 
> CFRunLoopRunSpecific + 470
>   16  CoreFoundation  0x01bc351b 
> CFRunLoopRunInMode + 123
>   17  GraphicsServices0x05f2f664 
> GSEventRunModal + 192
>   18  GraphicsServices0x05f2f4a1 GSEventRun + 
> 104
>   19  UIKit   0x024801eb 
> UIApplicationMain + 160
>   20  mobilespec  0x000e42a9 main + 89
>   21  libdyld.dylib   0x04039a21 start + 1
>   )
> Feb  4 12:23:30 dbtiefighter SpringBoard[16597]: HW kbd: Failed to set (null) 
> as keyboard focus
> Feb  4 12:23:30 dbtiefighter 
> com.apple.CoreSimulator.SimDevice.DA6D3C8F-39BE-486B-A6DB-362B7BA75FD3.launchd_sim[16580]
>  (UIKitApplication:org.apache.mobilespec[0x7778][62230]): Ser

[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

Github user ghenry22 commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/82#issuecomment-182668004
  
That should fix the test for rate change as it will allow the media to 
buffer before starting to count play time.

In reality actually using the media plugin in an audioplayer app I have not 
had any issues or crashes related to this ever.  I listen for mediaStatus 
events from the plugin in my app and only start playing when it is ready.


> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation  0x01bc3dc8 
> __CFRunLoopRun + 1032
>   15  CoreFoundation  0x01bc3706 
> CFRunLoopRunSpecific + 470
>   16  CoreFoundation  0x01bc351b 
> CFRunLoopRunInMode + 123
>   17  GraphicsServices0x05f2f664 
> GSEventRunModal + 192
>   18  GraphicsServices0x05f2f4a1 GSEventRun + 
> 104
>   19  UIKit   0x024801eb 
> UIApplicationMain + 160
>   20  mobilespec  0x000e42a9 main + 89
>   21  libdyld.dylib   0x04039a21 start + 1
>   )
> Feb  4 12:23:30 dbt

[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/82#issuecomment-182667452
  
LGTM


> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation  0x01bc3dc8 
> __CFRunLoopRun + 1032
>   15  CoreFoundation  0x01bc3706 
> CFRunLoopRunSpecific + 470
>   16  CoreFoundation  0x01bc351b 
> CFRunLoopRunInMode + 123
>   17  GraphicsServices0x05f2f664 
> GSEventRunModal + 192
>   18  GraphicsServices0x05f2f4a1 GSEventRun + 
> 104
>   19  UIKit   0x024801eb 
> UIApplicationMain + 160
>   20  mobilespec  0x000e42a9 main + 89
>   21  libdyld.dylib   0x04039a21 start + 1
>   )
> Feb  4 12:23:30 dbtiefighter SpringBoard[16597]: HW kbd: Failed to set (null) 
> as keyboard focus
> Feb  4 12:23:30 dbtiefighter 
> com.apple.CoreSimulator.SimDevice.DA6D3C8F-39BE-486B-A6DB-362B7BA75FD3.launchd_sim[16580]
>  (UIKitApplication:org.apache.mobilespec[0x7778][62230]): Service exited due 
> to signal: Abort trap: 6
> Feb  4 12:23:31 dbtiefighter Spri

[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

Github user shazron commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/82#issuecomment-182658276
  
Reviewing.


> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation  0x01bc3dc8 
> __CFRunLoopRun + 1032
>   15  CoreFoundation  0x01bc3706 
> CFRunLoopRunSpecific + 470
>   16  CoreFoundation  0x01bc351b 
> CFRunLoopRunInMode + 123
>   17  GraphicsServices0x05f2f664 
> GSEventRunModal + 192
>   18  GraphicsServices0x05f2f4a1 GSEventRun + 
> 104
>   19  UIKit   0x024801eb 
> UIApplicationMain + 160
>   20  mobilespec  0x000e42a9 main + 89
>   21  libdyld.dylib   0x04039a21 start + 1
>   )
> Feb  4 12:23:30 dbtiefighter SpringBoard[16597]: HW kbd: Failed to set (null) 
> as keyboard focus
> Feb  4 12:23:30 dbtiefighter 
> com.apple.CoreSimulator.SimDevice.DA6D3C8F-39BE-486B-A6DB-362B7BA75FD3.launchd_sim[16580]
>  (UIKitApplication:org.apache.mobilespec[0x7778][62230]): Service exited due 
> to signal: Abort trap: 6
> Feb  4 12:23:31 dbtiefighte

[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

Github user omefire commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/82#issuecomment-182649235
  
When dealing with remote files, we can get into a situation where we start 
playing before the native iOS components (AVPlayer & AVPlayerItem) have had the 
time to buffer the file to be played.
To avoid the app crashing in such a situation, we only seek if both the 
player and the player item are ready.


> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation  0x01bc3dc8 
> __CFRunLoopRun + 1032
>   15  CoreFoundation  0x01bc3706 
> CFRunLoopRunSpecific + 470
>   16  CoreFoundation  0x01bc351b 
> CFRunLoopRunInMode + 123
>   17  GraphicsServices0x05f2f664 
> GSEventRunModal + 192
>   18  GraphicsServices0x05f2f4a1 GSEventRun + 
> 104
>   19  UIKit   0x024801eb 
> UIApplicationMain + 160
>   20  mobilespec  0x000e42a9 main + 89
>   21  libdyld.dylib   0x04039a21 start + 1
>   )
> Feb  4 12:23:30 dbtiefighter SpringBoard[16597]: HW kbd: Fai

[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

Github user omefire commented on the pull request:


https://github.com/apache/cordova-plugin-media/pull/82#issuecomment-182635288
  
@shazron , could you please help review these changes ?


> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation  0x01bc3dc8 
> __CFRunLoopRun + 1032
>   15  CoreFoundation  0x01bc3706 
> CFRunLoopRunSpecific + 470
>   16  CoreFoundation  0x01bc351b 
> CFRunLoopRunInMode + 123
>   17  GraphicsServices0x05f2f664 
> GSEventRunModal + 192
>   18  GraphicsServices0x05f2f4a1 GSEventRun + 
> 104
>   19  UIKit   0x024801eb 
> UIApplicationMain + 160
>   20  mobilespec  0x000e42a9 main + 89
>   21  libdyld.dylib   0x04039a21 start + 1
>   )
> Feb  4 12:23:30 dbtiefighter SpringBoard[16597]: HW kbd: Failed to set (null) 
> as keyboard focus
> Feb  4 12:23:30 dbtiefighter 
> com.apple.CoreSimulator.SimDevice.DA6D3C8F-39BE-486B-A6DB-362B7BA75FD3.launchd_sim[16580]
>  (UIKitApplication:org.apache.mobilespec[0x7778][62230]): Service exited due 
> to signal

[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

GitHub user omefire opened a pull request:

https://github.com/apache/cordova-plugin-media/pull/82

CB-10535: Fix Plugin Media crash due to seeking before buffering of file is 
completed



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

$ git pull https://github.com/omefire/cordova-plugin-media CB-10535

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

https://github.com/apache/cordova-plugin-media/pull/82.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 #82


commit cd26fec7dfbf284bf4047bf0ab8d62c42562a2db
Author: Omar Mefire 
Date:   2016-02-09T23:30:45Z

Appease iOS ATS issues by downloading MP3 file from HTTPS instead of HTTP

commit 06b3d09a1e4ffd4868b0632c5d99c1d4ccfb5cfb
Author: Omar Mefire 
Date:   2016-02-10T01:40:48Z

Fixing confusing indentation

commit 268d052a3f6a0bd4bf5c52d9a265ef89d7f8be7a
Author: Omar Mefire 
Date:   2016-02-10T22:29:19Z

CB-10535: To avoid potential crashes, only seek if both avPlayer and 
avPlayerItem are ready, and send back an error message to client code




> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation

[jira] [Commented] (CB-10535) cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10535:
-

Github user omefire closed the pull request at:

https://github.com/apache/cordova-plugin-media/pull/81


> cordova-plugin-media causes iOS app crash - 'NSInvalidArgumentException'
> 
>
> Key: CB-10535
> URL: https://issues.apache.org/jira/browse/CB-10535
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Reporter: Omar Mefire
>Assignee: Omar Mefire
>Priority: Critical
>  Labels: found-by-ci, ios, triaged
>
> CI fails with timeout: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/running-tests/logs/stdio
> This might be due to this crash: 
> https://ci.apache.org/builders/cordova-ios/builds/1663/steps/gathering-logs/logs/stdio
> I suspect this might be caused by a cordova-plugin-media failure
> ==
> File Content:
> Feb  4 12:23:29 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Stopped playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Media with id 
> 609de056-dc4d-d301-d0e4-ee6df181 released
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Will use resource 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3' from the Internet.
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing audio sample 
> 'http://cordova.apache.org/downloads/BlueZedEx.mp3'
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: Playing stream with AVPlayer 
> & custom rate
> Feb  4 12:23:30 dbtiefighter mobilespec[62230]: *** Terminating app due to 
> uncaught exception 'NSInvalidArgumentException', reason: 'AVPlayerItem cannot 
> service a seek request with a completion handler until its status is 
> AVPlayerItemStatusReadyToPlay.'
>   *** First throw call stack:
>   (
>   0   CoreFoundation  0x01cb4a84 
> __exceptionPreprocess + 180
>   1   libobjc.A.dylib 0x0174ee02 
> objc_exception_throw + 50
>   2   AVFoundation0x007855ae 
> -[AVPlayerItem seekToTime:toleranceBefore:toleranceAfter:completionHandler:] 
> + 1714
>   3   AVFoundation0x0076e49e -[AVPlayer 
> seekToTime:toleranceBefore:toleranceAfter:completionHandler:] + 174
>   4   mobilespec  0x0014cb96 -[CDVSound 
> seekToAudio:] + 2054
>   5   mobilespec  0x001791a8 
> -[CDVCommandQueue execute:] + 888
>   6   mobilespec  0x00178a00 
> -[CDVCommandQueue executePending] + 848
>   7   mobilespec  0x0016df2d 
> __40-[CDVCommandDelegateImpl evalJsHelper2:]_block_invoke + 349
>   8   mobilespec  0x0017be35 
> -[CDVUIWebViewEngine evaluateJavaScript:completionHandler:] + 181
>   9   mobilespec  0x0016dd7d 
> -[CDVCommandDelegateImpl evalJsHelper2:] + 237
>   10  libobjc.A.dylib 0x01763059 -[NSObject 
> performSelector:withObject:] + 70
>   11  Foundation  0x0135d178 
> __NSThreadPerformPerform + 323
>   12  CoreFoundation  0x01bced1f 
> __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
>   13  CoreFoundation  0x01bc49ab 
> __CFRunLoopDoSources0 + 523
>   14  CoreFoundation  0x01bc3dc8 
> __CFRunLoopRun + 1032
>   15  CoreFoundation  0x01bc3706 
> CFRunLoopRunSpecific + 470
>   16  CoreFoundation  0x01bc351b 
> CFRunLoopRunInMode + 123
>   17  GraphicsServices0x05f2f664 
> GSEventRunModal + 192
>   18  GraphicsServices0x05f2f4a1 GSEventRun + 
> 104
>   19  UIKit   0x024801eb 
> UIApplicationMain + 160
>   20  mobilespec  0x000e42a9 main + 89
>   21  libdyld.dylib   0x04039a21 start + 1
>   )
> Feb  4 12:23:30 dbtiefighter SpringBoard[16597]: HW kbd: Failed to set (null) 
> as keyboard focus
> Feb  4 12:23:30 dbtiefighter 
> com.apple.CoreSimulator.SimDevice.DA6D3C8F-39BE-486B-A6DB-362B7BA75FD3.launchd_sim[16580]
>  (UIKitApplication:org.apache.mobilespec[0x7778][62230]): Service exited due 
> to signal: Abort trap: 6
> Feb  4 12:23:31 dbtiefighter SpringBoard[16597]: Application 
> 'UIKitAp

[jira] [Commented] (CB-10530) App freezes sometimes directly after starting on iOS

2016-02-10 Thread Torsten Freyhall (JIRA)

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

Torsten Freyhall commented on CB-10530:
---

I recreated the issue as described by Michael Stanford and tried some 
strategies to make it disappear.

The issues seems to be related to the failSafeTimerId set in pokeNative 
function in cordova-js-src/exec.js.

If the sum of the execution time for deviceready callback events is more than 
~50 ms it calls the gap://ready again, which I guess replaces the current 
command stack with an empty one or something like that (I'm just guessing here)

I've *worked around* this by increasing the timeout interval from 50ms to 
1000ms, however this probably renders the timeout useless. 

To edit this in your project,  go to Staging / www / cordova.js, row 990. (in 
Xcode), and edit the interval there.

Project to reproduce and test fix:
https://github.com/toostn/cordova-ios-timer-bug

> App freezes sometimes directly after starting on iOS
> 
>
> Key: CB-10530
> URL: https://issues.apache.org/jira/browse/CB-10530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.0.0
> Environment: OSX El Capitan 10.11.3, XCODE (7.2.1), iOS 9.2.1, 
> cordova 6.0.0, ionic 1.7.14
>Reporter: Florian Krüger
>Priority: Critical
>  Labels: triaged
> Attachments: Instruments.trace.zip
>
>
> * Installed the "ionic start myApp sidemenu" example application
> * Start XCODE (7.2.1)
> * Start the app by clicking the run button from  xCODE
> * The app probably starts as expected.
> * Repeat the start process until the app freezes.
> The app sometimes freezes completely. If this happens you cannot do anything 
> with the app (you need to push the home button and close the app via task 
> manager). I had the same issue for another more complex app.
> The CPU stays at around 99% workload.
> I made a snapshot of the profiler (Instruments)
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-10590) Known security vulnerabilities in dependencies of current version of express: qs@0.4.x and connect@1.x

2016-02-10 Thread Spencer A Claxton (JIRA)
Spencer A Claxton created CB-10590:
--

 Summary: Known security vulnerabilities in dependencies of current 
version of express: qs@0.4.x and connect@1.x
 Key: CB-10590
 URL: https://issues.apache.org/jira/browse/CB-10590
 Project: Apache Cordova
  Issue Type: Bug
  Components: weinre
Reporter: Spencer A Claxton
Assignee: Patrick Mueller


There are known security vulnerabilities in dependencies of current version of 
express: qs@0.4.x and connect@1.x. See 
https://nodesecurity.io/advisories/qs_dos_extended_event_loop_blocking and 
https://nodesecurity.io/advisories/methodOverride_Middleware_Reflected_Cross-Site_Scripting
 for more detail. Can we bump express so that these vulnerabilities go away?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10206) *sdkVersion preferences are not documented

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10206:
-

Github user omefire commented on the pull request:

https://github.com/apache/cordova-docs/pull/490#issuecomment-182577611
  
LGTM


> *sdkVersion preferences are not documented
> --
>
> Key: CB-10206
> URL: https://issues.apache.org/jira/browse/CB-10206
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Docs
>Affects Versions: 5.4.1
>Reporter: Frederico Costa Galvão
>Assignee: Richard B Knoll
>Priority: Minor
>  Labels: Docs-6.x, android, config.xml, cordova-lib, docs, triaged
>
> Neither of the following preferences handled by 
> *cordova-lib/src/cordova/metadata/android_parser.js* are currently documented 
> at *cordova-docs/www/docs/en/5.4.0/guide/platforms/android/config.md*:
> {code}['minSdkVersion', 'maxSdkVersion', 'targetSdkVersion']{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10481) Update the docs according to windows8 deprecation

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10481:
-

Github user omefire commented on the pull request:

https://github.com/apache/cordova-docs/pull/478#issuecomment-182576365
  
Should we not also remove Win8 from other languages ? 
i.e: 
https://github.com/apache/cordova-docs/tree/95c3b8c8623ea2ac748ceb25f66a5a272c028238/www/docs/zh/dev/guide/platforms/win8


> Update the docs according to windows8 deprecation
> -
>
> Key: CB-10481
> URL: https://issues.apache.org/jira/browse/CB-10481
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Docs, Windows
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-10363) Clean 'Plugin Specification' reference page

2016-02-10 Thread Raghav (JIRA)

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

Raghav resolved CB-10363.
-
Resolution: Fixed

> Clean 'Plugin Specification' reference page
> ---
>
> Key: CB-10363
> URL: https://issues.apache.org/jira/browse/CB-10363
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Docs
>Reporter: Omar Mefire
>Assignee: Raghav
>
> - Make sure the documentation is up to date with the codebase



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10363) Clean 'Plugin Specification' reference page

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10363:
-

Github user omefire closed the pull request at:

https://github.com/apache/cordova-docs/pull/456


> Clean 'Plugin Specification' reference page
> ---
>
> Key: CB-10363
> URL: https://issues.apache.org/jira/browse/CB-10363
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Docs
>Reporter: Omar Mefire
>Assignee: Raghav
>
> - Make sure the documentation is up to date with the codebase



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10363) Clean 'Plugin Specification' reference page

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10363:
-

Github user rakatyal commented on the pull request:

https://github.com/apache/cordova-docs/pull/456#issuecomment-182569279
  
@omefire: Can you close this PR? I took care of most of these changes in my 
commit.


> Clean 'Plugin Specification' reference page
> ---
>
> Key: CB-10363
> URL: https://issues.apache.org/jira/browse/CB-10363
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Docs
>Reporter: Omar Mefire
>Assignee: Raghav
>
> - Make sure the documentation is up to date with the codebase



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-10364) Make Plugin Specification (plugin.xml) page a reference

2016-02-10 Thread Raghav (JIRA)

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

Raghav resolved CB-10364.
-
Resolution: Fixed

> Make Plugin Specification (plugin.xml) page a reference
> ---
>
> Key: CB-10364
> URL: https://issues.apache.org/jira/browse/CB-10364
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Docs
>Reporter: Raghav
>Assignee: Raghav
>  Labels: Docs-6.x
>
> Plugin specification 
> (http://cordova.apache.org/docs/en/latest/plugin_ref/spec.html) needs to be 
> modified as per the new reference structure. 
> General guidelines:
> - While giving examples, keep them short. Do not repeat for all 
> plugins/platforms.
> - Remove all references to cordova plugin registry.
> - Remove Tizen references. The platform is deprecated 
> (http://markmail.org/message/hryg6sjswecpgndu)
> - Keep information up to date for the platforms, CLI and plugins



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10364) Make Plugin Specification (plugin.xml) page a reference

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10364:
-

Github user rakatyal closed the pull request at:

https://github.com/apache/cordova-docs/pull/474


> Make Plugin Specification (plugin.xml) page a reference
> ---
>
> Key: CB-10364
> URL: https://issues.apache.org/jira/browse/CB-10364
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Docs
>Reporter: Raghav
>Assignee: Raghav
>  Labels: Docs-6.x
>
> Plugin specification 
> (http://cordova.apache.org/docs/en/latest/plugin_ref/spec.html) needs to be 
> modified as per the new reference structure. 
> General guidelines:
> - While giving examples, keep them short. Do not repeat for all 
> plugins/platforms.
> - Remove all references to cordova plugin registry.
> - Remove Tizen references. The platform is deprecated 
> (http://markmail.org/message/hryg6sjswecpgndu)
> - Keep information up to date for the platforms, CLI and plugins



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10364) Make Plugin Specification (plugin.xml) page a reference

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10364:
-

Github user rakatyal commented on the pull request:

https://github.com/apache/cordova-docs/pull/474#issuecomment-182567392
  
This has been merged as part of [this] 
(https://github.com/apache/cordova-docs/commit/d236276fb6c651b1a6d76e6dd3ea1c031b043c19)
 commit. 


> Make Plugin Specification (plugin.xml) page a reference
> ---
>
> Key: CB-10364
> URL: https://issues.apache.org/jira/browse/CB-10364
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Docs
>Reporter: Raghav
>Assignee: Raghav
>  Labels: Docs-6.x
>
> Plugin specification 
> (http://cordova.apache.org/docs/en/latest/plugin_ref/spec.html) needs to be 
> modified as per the new reference structure. 
> General guidelines:
> - While giving examples, keep them short. Do not repeat for all 
> plugins/platforms.
> - Remove all references to cordova plugin registry.
> - Remove Tizen references. The platform is deprecated 
> (http://markmail.org/message/hryg6sjswecpgndu)
> - Keep information up to date for the platforms, CLI and plugins



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10270) camera.getPicture() returns an empty string

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10270:
-

Github user shahin8r commented on the pull request:


https://github.com/apache/cordova-plugin-camera/pull/160#issuecomment-182563046
  
This doesn't seem to fix empty string for videos (mediaType: 1) but is 
working fine on photos.


> camera.getPicture() returns an empty string
> ---
>
> Key: CB-10270
> URL: https://issues.apache.org/jira/browse/CB-10270
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Affects Versions: 2.1.0
> Environment: Android 4.4.2 (api 19)
>Reporter: Alexander Sorokin
>Assignee: Richard B Knoll
>  Labels: android, reproduced, triaged
> Attachments: mobilespec-camera.7z
>
>
> Code sample to reproduce:
> {code}
> navigator.camera.getPicture(onSuccess, onFail, { 
> destinationType: Camera.DestinationType.FILE_URI,
> sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
> correctOrientation: true
> });
> {code}
> {{onSuccess}} is called with an empty string as an argument.
> if {{correctOrientation}} is {{false}}, everything works as expected.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10364) Make Plugin Specification (plugin.xml) page a reference

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10364:
-

Github user riknoll commented on the pull request:

https://github.com/apache/cordova-docs/pull/474#issuecomment-182553520
  
LGTM


> Make Plugin Specification (plugin.xml) page a reference
> ---
>
> Key: CB-10364
> URL: https://issues.apache.org/jira/browse/CB-10364
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Docs
>Reporter: Raghav
>Assignee: Raghav
>  Labels: Docs-6.x
>
> Plugin specification 
> (http://cordova.apache.org/docs/en/latest/plugin_ref/spec.html) needs to be 
> modified as per the new reference structure. 
> General guidelines:
> - While giving examples, keep them short. Do not repeat for all 
> plugins/platforms.
> - Remove all references to cordova plugin registry.
> - Remove Tizen references. The platform is deprecated 
> (http://markmail.org/message/hryg6sjswecpgndu)
> - Keep information up to date for the platforms, CLI and plugins



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10584:
-

Github user daserge commented on the pull request:

https://github.com/apache/cordova-lib/pull/385#issuecomment-182552066
  
@vladimir-kotikov, could you please review?


> Splashscreen plugin crashes the app on windows 10 when built with browserify
> 
>
> Key: CB-10584
> URL: https://issues.apache.org/jira/browse/CB-10584
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen, Windows
>Affects Versions: 3.2.0
> Environment: Windows 10
>Reporter: Alexander Sorokin
>Assignee: Sergey Shakhnazarov
>Priority: Critical
>  Labels: Windows, Windows10
>
> {noformat}
> cordova create foo
> cd foo
> cordova platform add windows
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> add to config.xml:
> 
> cordova run --browserify
> {noformat}
> The app crashes right after start. Reported error message is: "WinJS is 
> undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10584:
-

Github user daserge commented on the pull request:

https://github.com/apache/cordova-lib/pull/385#issuecomment-182551514
  
It was taking the old version from `legacy_exec` so `base.js` was not found.


> Splashscreen plugin crashes the app on windows 10 when built with browserify
> 
>
> Key: CB-10584
> URL: https://issues.apache.org/jira/browse/CB-10584
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen, Windows
>Affects Versions: 3.2.0
> Environment: Windows 10
>Reporter: Alexander Sorokin
>Assignee: Sergey Shakhnazarov
>Priority: Critical
>  Labels: Windows, Windows10
>
> {noformat}
> cordova create foo
> cd foo
> cordova platform add windows
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> add to config.xml:
> 
> cordova run --browserify
> {noformat}
> The app crashes right after start. Reported error message is: "WinJS is 
> undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-9528) create new core plugin to control screen orientation

2016-02-10 Thread Tony Homer (JIRA)

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

Tony Homer commented on CB-9528:


I haven't gotten started yet, but still intend to do so in February.  Thanks 
for following up!

> create new core plugin to control screen orientation
> 
>
> Key: CB-9528
> URL: https://issues.apache.org/jira/browse/CB-9528
> Project: Apache Cordova
>  Issue Type: Improvement
>Reporter: Tony Homer
>Assignee: Tony Homer
>
> Create a new core Cordova plugin that enables the user to dynamically control 
> the orientation of their app.
> Tentatively base interface on [the screen-orientation spec| 
> http://www.w3.org/TR/screen-orientation/].
> There is a precedent for this behavior being supported as part of Cordova.
> Previously iOS supported a non-standard approach to controlling the 
> orientation dynamically (see last entry in [this section of the 5.1.1 
> docs|http://cordova.apache.org/docs/en/5.1.1/config_ref_index.md.html#The%20config.xml%20File_multi_platform_preferences]).
> Recent platform changes made the iOS-specific approach untenable, but it's 
> removal prompted a discussion about enabling this as a cross-platform feature 
> via a new core plugin.
> See related discussion in CB-8047.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10584:
-

GitHub user daserge opened a pull request:

https://github.com/apache/cordova-lib/pull/385

CB-10584 Splashscreen plugin crashes the app on windows 10 when built…

… with browserify

[Jira issue](https://issues.apache.org/jira/browse/CB-10584)

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

$ git pull https://github.com/MSOpenTech/cordova-lib CB-10584

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

https://github.com/apache/cordova-lib/pull/385.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 #385


commit 52e072e9379b5ca82ea4d3fabd9dfde6f662aae4
Author: daserge 
Date:   2016-02-10T19:38:29Z

CB-10584 Splashscreen plugin crashes the app on windows 10 when built with 
browserify




> Splashscreen plugin crashes the app on windows 10 when built with browserify
> 
>
> Key: CB-10584
> URL: https://issues.apache.org/jira/browse/CB-10584
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen, Windows
>Affects Versions: 3.2.0
> Environment: Windows 10
>Reporter: Alexander Sorokin
>Assignee: Sergey Shakhnazarov
>Priority: Critical
>  Labels: Windows, Windows10
>
> {noformat}
> cordova create foo
> cd foo
> cordova platform add windows
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> add to config.xml:
> 
> cordova run --browserify
> {noformat}
> The app crashes right after start. Reported error message is: "WinJS is 
> undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-8765) Error running an app in device with a name with a space char

2016-02-10 Thread Joe Bowser (JIRA)

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

Joe Bowser edited comment on CB-8765 at 2/10/16 7:41 PM:
-

[~dhams] The issue is that the Device ID has a  a space in it, which isn't 
valid.  I don't know what a Valencia DG800 is, but given that the report didn't 
respond for a year, I'm fine with closing this and regarding this device as a 
broken POS.


was (Author: bowserj):
[~dhams] The issue is that the Device ID has a  a space in it, which isn't 
valid.  I don't know what a Valencia DG800 is, but given that the report didn't 
respond for a year, I'm fine with closing thsi and regarding this device as a 
broken POS.

> Error running an app in device with a name with a space char
> 
>
> Key: CB-8765
> URL: https://issues.apache.org/jira/browse/CB-8765
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 4.0.0
>Reporter: Hector Santos
>Priority: Minor
>  Labels: adb, easyfix, patch, run
> Fix For: Master
>
>
> When try to run a cordova run android --device, if the device name have a 
> space (like VALENCIA DG800), the ADB process give an error... This can be 
> solve adding a double quotes in the device name:
> adb -s "' + resolvedTarget.target + '"
> More sequences with the adb process must be changed with doble quotes in the 
> device name.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-9528) create new core plugin to control screen orientation

2016-02-10 Thread Olivier Allouch (JIRA)

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

Olivier Allouch commented on CB-9528:
-

Any news? 

> create new core plugin to control screen orientation
> 
>
> Key: CB-9528
> URL: https://issues.apache.org/jira/browse/CB-9528
> Project: Apache Cordova
>  Issue Type: Improvement
>Reporter: Tony Homer
>Assignee: Tony Homer
>
> Create a new core Cordova plugin that enables the user to dynamically control 
> the orientation of their app.
> Tentatively base interface on [the screen-orientation spec| 
> http://www.w3.org/TR/screen-orientation/].
> There is a precedent for this behavior being supported as part of Cordova.
> Previously iOS supported a non-standard approach to controlling the 
> orientation dynamically (see last entry in [this section of the 5.1.1 
> docs|http://cordova.apache.org/docs/en/5.1.1/config_ref_index.md.html#The%20config.xml%20File_multi_platform_preferences]).
> Recent platform changes made the iOS-specific approach untenable, but it's 
> removal prompted a discussion about enabling this as a cross-platform feature 
> via a new core plugin.
> See related discussion in CB-8047.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-10530) App freezes sometimes directly after starting on iOS

2016-02-10 Thread Michael Stanford (JIRA)

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

Michael Stanford edited comment on CB-10530 at 2/10/16 7:26 PM:


Yes - the iOS platform version I am testing with is iOS 4.0.1. Other plugins 
triggering this issue include:
 - cordova-plugin-network-information
 - cordova-plugin-statusbar



was (Author: michaelstanford):
Other plugins triggering this issue include:
cordova-plugin-network-information
cordova-plugin-statusbar


> App freezes sometimes directly after starting on iOS
> 
>
> Key: CB-10530
> URL: https://issues.apache.org/jira/browse/CB-10530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.0.0
> Environment: OSX El Capitan 10.11.3, XCODE (7.2.1), iOS 9.2.1, 
> cordova 6.0.0, ionic 1.7.14
>Reporter: Florian Krüger
>Priority: Critical
>  Labels: triaged
> Attachments: Instruments.trace.zip
>
>
> * Installed the "ionic start myApp sidemenu" example application
> * Start XCODE (7.2.1)
> * Start the app by clicking the run button from  xCODE
> * The app probably starts as expected.
> * Repeat the start process until the app freezes.
> The app sometimes freezes completely. If this happens you cannot do anything 
> with the app (you need to push the home button and close the app via task 
> manager). I had the same issue for another more complex app.
> The CPU stays at around 99% workload.
> I made a snapshot of the profiler (Instruments)
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10364) Make Plugin Specification (plugin.xml) page a reference

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10364:
-

Github user rakatyal commented on the pull request:

https://github.com/apache/cordova-docs/pull/474#issuecomment-182537864
  
Updated with suggestions.


> Make Plugin Specification (plugin.xml) page a reference
> ---
>
> Key: CB-10364
> URL: https://issues.apache.org/jira/browse/CB-10364
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Docs
>Reporter: Raghav
>Assignee: Raghav
>  Labels: Docs-6.x
>
> Plugin specification 
> (http://cordova.apache.org/docs/en/latest/plugin_ref/spec.html) needs to be 
> modified as per the new reference structure. 
> General guidelines:
> - While giving examples, keep them short. Do not repeat for all 
> plugins/platforms.
> - Remove all references to cordova plugin registry.
> - Remove Tizen references. The platform is deprecated 
> (http://markmail.org/message/hryg6sjswecpgndu)
> - Keep information up to date for the platforms, CLI and plugins



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10530) App freezes sometimes directly after starting on iOS

2016-02-10 Thread Michael Stanford (JIRA)

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

Michael Stanford commented on CB-10530:
---

Other plugins triggering this issue include:
cordova-plugin-network-information
cordova-plugin-statusbar


> App freezes sometimes directly after starting on iOS
> 
>
> Key: CB-10530
> URL: https://issues.apache.org/jira/browse/CB-10530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.0.0
> Environment: OSX El Capitan 10.11.3, XCODE (7.2.1), iOS 9.2.1, 
> cordova 6.0.0, ionic 1.7.14
>Reporter: Florian Krüger
>Priority: Critical
>  Labels: triaged
> Attachments: Instruments.trace.zip
>
>
> * Installed the "ionic start myApp sidemenu" example application
> * Start XCODE (7.2.1)
> * Start the app by clicking the run button from  xCODE
> * The app probably starts as expected.
> * Repeat the start process until the app freezes.
> The app sometimes freezes completely. If this happens you cannot do anything 
> with the app (you need to push the home button and close the app via task 
> manager). I had the same issue for another more complex app.
> The CPU stays at around 99% workload.
> I made a snapshot of the profiler (Instruments)
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10589) Version 3.2.0 not released on npm

2016-02-10 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov commented on CB-10589:
--

[~jwalker74], plugins release process is in the voting stage now. You can add 
the latest version from Github in the meantime:
{{cordova plugin rm splashscreen && cordova plugin add 
https://github.com/apache/cordova-plugin-splashscreen}}

> Version 3.2.0 not released on npm
> -
>
> Key: CB-10589
> URL: https://issues.apache.org/jira/browse/CB-10589
> Project: Apache Cordova
>  Issue Type: Wish
>  Components: Plugin SplashScreen
> Environment: iOS
>Reporter: Jose Walker
>Priority: Blocker
>
> This version is not yet released on npm and thus nobody can benefit from the 
> bugs that have been fixed in this version.
> It is blocking because my app now is failing.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10589) Version 3.2.0 not released on npm

2016-02-10 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov updated CB-10589:
-
Component/s: (was: iOS)
 Plugin SplashScreen

> Version 3.2.0 not released on npm
> -
>
> Key: CB-10589
> URL: https://issues.apache.org/jira/browse/CB-10589
> Project: Apache Cordova
>  Issue Type: Wish
>  Components: Plugin SplashScreen
> Environment: iOS
>Reporter: Jose Walker
>Priority: Blocker
>
> This version is not yet released on npm and thus nobody can benefit from the 
> bugs that have been fixed in this version.
> It is blocking because my app now is failing.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10587) Visual Studios Char limit Android play services

2016-02-10 Thread Robert Kennedy (JIRA)

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

Robert Kennedy updated CB-10587:

Description: 
When building with a plugin that requires google services, such as a geofence 
plugin or a google analytics plugin. There is a 240 character limit that is 
breached and building fails. It is trying to access a .png that is at 
project\platforms\android\build\intermediates\exploded-aar\com.google.android.gms\play-services-base\8.3.0\res\drawable-hdpi.
 With the additinonal 4-5 folders above this, it easily breask the 240 
character limit of VS and windows. Very frustrating since play-services are 
required for a lot of things.

However, in Cordova 5.4.1 and lower, this issues of 240 character limit does 
not exist...

  was:When building with a plugin that requires google services, such as a 
geofence plugin or a google analytics plugin. There is a 240 character limit 
that is breached and building fails. It is trying to access a .png that is at 
project\platforms\android\build\intermediates\exploded-aar\com.google.android.gms\play-services-base\8.3.0\res\drawable-hdpi.
 With the additinonal 4-5 folders above this, it easily breask the 240 
character limit of VS and windows. Very frustrating since play-services are 
required for a lot of things.


> Visual Studios Char limit Android play services
> ---
>
> Key: CB-10587
> URL: https://issues.apache.org/jira/browse/CB-10587
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 6.0.0
> Environment: Visual Studios 2015 Enterprise
>Reporter: Robert Kennedy
>Priority: Blocker
>
> When building with a plugin that requires google services, such as a geofence 
> plugin or a google analytics plugin. There is a 240 character limit that is 
> breached and building fails. It is trying to access a .png that is at 
> project\platforms\android\build\intermediates\exploded-aar\com.google.android.gms\play-services-base\8.3.0\res\drawable-hdpi.
>  With the additinonal 4-5 folders above this, it easily breask the 240 
> character limit of VS and windows. Very frustrating since play-services are 
> required for a lot of things.
> However, in Cordova 5.4.1 and lower, this issues of 240 character limit does 
> not exist...



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-10479) Deprecate windows8 platform

2016-02-10 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov resolved CB-10479.
--
Resolution: Fixed

> Deprecate windows8 platform
> ---
>
> Key: CB-10479
> URL: https://issues.apache.org/jira/browse/CB-10479
> Project: Apache Cordova
>  Issue Type: Task
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10481) Update the docs according to windows8 deprecation

2016-02-10 Thread ASF subversion and git services (JIRA)

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

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

Commit 3cb404e465d30f75b6b98ee880a135afbb498acf in cordova-docs's branch 
refs/heads/master from [~daserge]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=3cb404e ]

CB-10481 Update the docs according to windows8 deprecation

Fixed the Windows platform guide links


> Update the docs according to windows8 deprecation
> -
>
> Key: CB-10481
> URL: https://issues.apache.org/jira/browse/CB-10481
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Docs, Windows
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10481) Update the docs according to windows8 deprecation

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10481:
-

Github user asfgit closed the pull request at:

https://github.com/apache/cordova-docs/pull/478


> Update the docs according to windows8 deprecation
> -
>
> Key: CB-10481
> URL: https://issues.apache.org/jira/browse/CB-10481
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Docs, Windows
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-10481) Update the docs according to windows8 deprecation

2016-02-10 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov resolved CB-10481.
--
Resolution: Fixed

> Update the docs according to windows8 deprecation
> -
>
> Key: CB-10481
> URL: https://issues.apache.org/jira/browse/CB-10481
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Docs, Windows
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10481) Update the docs according to windows8 deprecation

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10481:
-

Github user sarangan12 commented on the pull request:

https://github.com/apache/cordova-docs/pull/478#issuecomment-182516182
  
LGTM


> Update the docs according to windows8 deprecation
> -
>
> Key: CB-10481
> URL: https://issues.apache.org/jira/browse/CB-10481
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Docs, Windows
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10412) [iOS — 3.x.x] AutoHideSplashScreen "false" isn't taken in account

2016-02-10 Thread Matthias Max (JIRA)

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

Matthias Max commented on CB-10412:
---

The bug is also there in production, see my comment here: 
https://issues.apache.org/jira/browse/CB-10562?focusedCommentId=15141388&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15141388

> [iOS — 3.x.x] AutoHideSplashScreen "false" isn't taken in account
> -
>
> Key: CB-10412
> URL: https://issues.apache.org/jira/browse/CB-10412
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 3.0.0, 3.1.0
>Reporter: jdat82
>  Labels: ios, no-repro, triaged, wfc
>
> if your set AutoHideSplashScreen to false in order to hide it yourself later 
> via #hide() method, the splashscreen on iOS never disappear.
> 
> AutoHideSplashScreen works fine if set to true. 
> Tried with $cordovaSplashscreen from ngCordova and navigator.splashscreen  
> directly. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10562) hide() not working in latest splashscreen plug in 3.1.0 in iOS

2016-02-10 Thread Matthias Max (JIRA)

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

Matthias Max commented on CB-10562:
---

This issue is not resolved.

In addition to the debugging preblems mentioned I have an app deploy to beta 
testers today and they couldn't start the app on the first run. They had to 
stop it and restart after which it worked.



> hide() not working in latest splashscreen plug in 3.1.0 in iOS
> --
>
> Key: CB-10562
> URL: https://issues.apache.org/jira/browse/CB-10562
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 3.1.0
> Environment: OSX Yosemite, iOS 9, iPhone 6, XCode 7.2.1, Cordova 
> 4.0.1, IONIC app, latest Cordova & IONIC CLIs
>Reporter: Matthias Max
>
> In version 3.0.0 the command navigator.splashscreen.hide(); works fine.
> With the new version 3.1.0 it simply doesn't close the splashscreen. The 
> splashscreen keeps on being displayed for the time set in the config.xml.
> config.xml:
>   
>   
>   
>   
>   
>   
>   
> JS:
> $ionicPlatform.ready(function() {
> // Hide splash screen
> if (navigator.splashscreen) {
>  navigator.splashscreen.hide();
> }
> });



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-10589) Version 3.2.0 not released on npm

2016-02-10 Thread Jose Walker (JIRA)
Jose Walker created CB-10589:


 Summary: Version 3.2.0 not released on npm
 Key: CB-10589
 URL: https://issues.apache.org/jira/browse/CB-10589
 Project: Apache Cordova
  Issue Type: Wish
  Components: iOS
 Environment: iOS
Reporter: Jose Walker
Priority: Blocker


This version is not yet released on npm and thus nobody can benefit from the 
bugs that have been fixed in this version.

It is blocking because my app now is failing.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-10588) Cordova InAppBrowser delay in passing cookies on iOS 9.2

2016-02-10 Thread Sarah Tressel (JIRA)
Sarah Tressel created CB-10588:
--

 Summary: Cordova InAppBrowser delay in passing cookies on iOS 9.2
 Key: CB-10588
 URL: https://issues.apache.org/jira/browse/CB-10588
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin InAppBrowser
 Environment: Ionic mobile app accessing a Drupal website
Reporter: Sarah Tressel


We are building an app using the cordova in-app browser as part of our 
authentication flow. We are seeing a problem with cookies not being passed by 
cordova on iOS 9.2 and later. We are using the Ionic platform for the app. Here 
is a detailed description:

We login users to the app by opening a login url (OKTA SSO login for the 
company) in the Cordova in-app browser plugin.

This renders the OKTA SAML template and allows the user to enter the 
credentials.

Upon do-login action, the in-app browser follows all the redirects and 
eventually on a successful Authentication renders the Drupal site from which we 
get content for the app.

At this point, we have the required cookie attached to the response to move 
forward and make direct API calls from the ionic application to the Drupal 
Resource API ( we do close the in-app browser once we load the Drupal site in 
the in-app browser).

This solution works perfectly on android and pre ios 9.2 devices.

With ios 9.2, there is a delayed hand-off of the cookies to the ionic webview 
once we close the in-app browser. I tried leaving the in-app browser open and i 
can access all the authenticated resources properly within the in-app browser 
right away without any delay, once the authentication is complete. So there is 
no issue withe the OKTA SSO flow or the cookie. There seems to be an issue with 
the cookie getting attached to the ionic webview from the in-app browser plugin.

On a average, it takes about a minute for the cookie to show up and we can then 
make API calls to Drupal. ( We keep calling Drupal API and on getting 403, we 
redirect to this same login flow and this continues for a while, until the 
cookie is available and the API call goes through successfully.)

Is there a way to get the cookie attached to the ionic webview from the in-app 
browser plugin without encountering this delay?




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-10587) Visual Studios

2016-02-10 Thread Robert Kennedy (JIRA)
Robert Kennedy created CB-10587:
---

 Summary: Visual Studios 
 Key: CB-10587
 URL: https://issues.apache.org/jira/browse/CB-10587
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 6.0.0
 Environment: Visual Studios 2015 Enterprise
Reporter: Robert Kennedy
Priority: Blocker


When building with a plugin that requires google services, such as a geofence 
plugin or a google analytics plugin. There is a 240 character limit that is 
breached and building fails. It is trying to access a .png that is at 
project\platforms\android\build\intermediates\exploded-aar\com.google.android.gms\play-services-base\8.3.0\res\drawable-hdpi.
 With the additinonal 4-5 folders above this, it easily breask the 240 
character limit of VS and windows. Very frustrating since play-services are 
required for a lot of things.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10587) Visual Studios Char limit Android play services

2016-02-10 Thread Robert Kennedy (JIRA)

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

Robert Kennedy updated CB-10587:

Summary: Visual Studios Char limit Android play services  (was: Visual 
Studios )

> Visual Studios Char limit Android play services
> ---
>
> Key: CB-10587
> URL: https://issues.apache.org/jira/browse/CB-10587
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 6.0.0
> Environment: Visual Studios 2015 Enterprise
>Reporter: Robert Kennedy
>Priority: Blocker
>
> When building with a plugin that requires google services, such as a geofence 
> plugin or a google analytics plugin. There is a 240 character limit that is 
> breached and building fails. It is trying to access a .png that is at 
> project\platforms\android\build\intermediates\exploded-aar\com.google.android.gms\play-services-base\8.3.0\res\drawable-hdpi.
>  With the additinonal 4-5 folders above this, it easily breask the 240 
> character limit of VS and windows. Very frustrating since play-services are 
> required for a lot of things.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-8765) Error running an app in device with a name with a space char

2016-02-10 Thread Joe Bowser (JIRA)

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

Joe Bowser resolved CB-8765.

Resolution: Won't Fix

> Error running an app in device with a name with a space char
> 
>
> Key: CB-8765
> URL: https://issues.apache.org/jira/browse/CB-8765
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 4.0.0
>Reporter: Hector Santos
>Priority: Minor
>  Labels: adb, easyfix, patch, run
> Fix For: Master
>
>
> When try to run a cordova run android --device, if the device name have a 
> space (like VALENCIA DG800), the ADB process give an error... This can be 
> solve adding a double quotes in the device name:
> adb -s "' + resolvedTarget.target + '"
> More sequences with the adb process must be changed with doble quotes in the 
> device name.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-8765) Error running an app in device with a name with a space char

2016-02-10 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-8765:


[~dhams] The issue is that the Device ID has a  a space in it, which isn't 
valid.  I don't know what a Valencia DG800 is, but given that the report didn't 
respond for a year, I'm fine with closing thsi and regarding this device as a 
broken POS.

> Error running an app in device with a name with a space char
> 
>
> Key: CB-8765
> URL: https://issues.apache.org/jira/browse/CB-8765
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 4.0.0
>Reporter: Hector Santos
>Priority: Minor
>  Labels: adb, easyfix, patch, run
> Fix For: Master
>
>
> When try to run a cordova run android --device, if the device name have a 
> space (like VALENCIA DG800), the ADB process give an error... This can be 
> solve adding a double quotes in the device name:
> adb -s "' + resolvedTarget.target + '"
> More sequences with the adb process must be changed with doble quotes in the 
> device name.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-10586) Cordova Platform Add Windows fires after_prepare hook before plugins are added

2016-02-10 Thread Ryan Fiorini (JIRA)
Ryan Fiorini created CB-10586:
-

 Summary: Cordova Platform Add Windows fires after_prepare hook 
before plugins are added
 Key: CB-10586
 URL: https://issues.apache.org/jira/browse/CB-10586
 Project: Apache Cordova
  Issue Type: Bug
  Components: Windows
Affects Versions: 4.3.0
Reporter: Ryan Fiorini


I have an after_prepare hook that makes changes to a plugin for windows only 
and when I do a cordova platform add windows it fails because the prepare hook 
tries to find the plugin and it isn't there.  When I put a try catch around it 
the prepare succeeds and then I see the plugin add messages.

This seems like a wrong order of processing when adding the platform.  It seems 
like the plugins should be added first then the prepare hook.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10530) App freezes sometimes directly after starting on iOS

2016-02-10 Thread Ross Holdway (JIRA)

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

Ross Holdway commented on CB-10530:
---

Also interesting to note that I'm only getting this issue with Cordova iOS 
4.0.0 and 4.0.1. Easily reproduce with 
https://github.com/rossholdway/ionic-ios-cordova-bug

> App freezes sometimes directly after starting on iOS
> 
>
> Key: CB-10530
> URL: https://issues.apache.org/jira/browse/CB-10530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.0.0
> Environment: OSX El Capitan 10.11.3, XCODE (7.2.1), iOS 9.2.1, 
> cordova 6.0.0, ionic 1.7.14
>Reporter: Florian Krüger
>Priority: Critical
>  Labels: triaged
> Attachments: Instruments.trace.zip
>
>
> * Installed the "ionic start myApp sidemenu" example application
> * Start XCODE (7.2.1)
> * Start the app by clicking the run button from  xCODE
> * The app probably starts as expected.
> * Repeat the start process until the app freezes.
> The app sometimes freezes completely. If this happens you cannot do anything 
> with the app (you need to push the home button and close the app via task 
> manager). I had the same issue for another more complex app.
> The CPU stays at around 99% workload.
> I made a snapshot of the profiler (Instruments)
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread Nikhil Khandelwal (JIRA)

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

Nikhil Khandelwal updated CB-10584:
---
Assignee: Sergey Shakhnazarov

> Splashscreen plugin crashes the app on windows 10 when built with browserify
> 
>
> Key: CB-10584
> URL: https://issues.apache.org/jira/browse/CB-10584
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen, Windows
>Affects Versions: 3.2.0
> Environment: Windows 10
>Reporter: Alexander Sorokin
>Assignee: Sergey Shakhnazarov
>Priority: Critical
>  Labels: Windows, Windows10
>
> {noformat}
> cordova create foo
> cd foo
> cordova platform add windows
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> add to config.xml:
> 
> cordova run --browserify
> {noformat}
> The app crashes right after start. Reported error message is: "WinJS is 
> undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10585) Use the `adb install -r` flag to replace the app and keep local data by default

2016-02-10 Thread jcesarmobile (JIRA)

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

jcesarmobile updated CB-10585:
--
Assignee: jcesarmobile

> Use the `adb install -r` flag to replace the app and keep local data by 
> default
> ---
>
> Key: CB-10585
> URL: https://issues.apache.org/jira/browse/CB-10585
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Affects Versions: 6.0.0
>Reporter: David King
>Assignee: jcesarmobile
>Priority: Minor
>
> Adding the -r flag means that local data is kept in-tact.
> Currently every time I use `cordova run android` my local data is wiped as 
> the app is re-installed rather than replaced.
> I think a version prior to 6.0.0 used the -r flag as expected.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Closed] (CB-10585) Use the `adb install -r` flag to replace the app and keep local data by default

2016-02-10 Thread jcesarmobile (JIRA)

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

jcesarmobile closed CB-10585.
-
Resolution: Duplicate

It's a duplicate of CB-10157

It has been fixed on cordova-android 5.2.0-dev

> Use the `adb install -r` flag to replace the app and keep local data by 
> default
> ---
>
> Key: CB-10585
> URL: https://issues.apache.org/jira/browse/CB-10585
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Affects Versions: 6.0.0
>Reporter: David King
>Assignee: jcesarmobile
>Priority: Minor
>
> Adding the -r flag means that local data is kept in-tact.
> Currently every time I use `cordova run android` my local data is wiped as 
> the app is re-installed rather than replaced.
> I think a version prior to 6.0.0 used the -r flag as expected.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-10585) Use the `adb install -r` flag to replace the app and keep local data by default

2016-02-10 Thread David King (JIRA)
David King created CB-10585:
---

 Summary: Use the `adb install -r` flag to replace the app and keep 
local data by default
 Key: CB-10585
 URL: https://issues.apache.org/jira/browse/CB-10585
 Project: Apache Cordova
  Issue Type: Improvement
  Components: Android
Affects Versions: 6.0.0
Reporter: David King
Priority: Minor


Adding the -r flag means that local data is kept in-tact.

Currently every time I use `cordova run android` my local data is wiped as the 
app is re-installed rather than replaced.

I think a version prior to 6.0.0 used the -r flag as expected.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10519) Using cordova.raw API outside of cordova project results in uncaught exception instead or promise rejection

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10519:
-

GitHub user vladimir-kotikov opened a pull request:

https://github.com/apache/cordova-lib/pull/384

CB-10519 Wrap all sync calls inside of `cordova.raw` methods into promises

This is a fix for [CB-10519](https://issues.apache.org/jira/browse/CB-10519)

This PR fixes the issue when promise returned from `cordova.raw` API would 
never be rejected if command is ran outside of cordova project. Instead 
syncronous exception will be thrown (by `util.preProcessOptions`), which is 
definitely unexpected for promise based API.

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

$ git pull https://github.com/MSOpenTech/cordova-lib CB-10519

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

https://github.com/apache/cordova-lib/pull/384.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 #384


commit 747c26e64a491645fad1dd109afb734bc9a5ce4a
Author: Vladimir Kotikov 
Date:   2016-02-10T12:45:19Z

CB-10519 Wrap all sync calls inside of `cordova.raw` methods into promises




> Using cordova.raw API outside of cordova project results in uncaught 
> exception instead or promise rejection
> ---
>
> Key: CB-10519
> URL: https://issues.apache.org/jira/browse/CB-10519
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 6.0.0
>Reporter: Vladimir Kotikov
>Assignee: Vladimir Kotikov
>  Labels: triaged
>
> When trying to {{cordova.raw.platfom('add', ...)}} outside of cordova project 
> the following error message logged to console:
> > Error: Current working directory is not a Cordova-based project.
> However, the error callback for {{cordova.raw.platfom('add', ...)}} isn't 
> called at all.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10539) CaptureFileAsync doesn't work when maxResolution is set to verySmallQvga on Windows 10

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10539:
-

Github user daserge closed the pull request at:

https://github.com/apache/cordova-plugin-camera/pull/165


> CaptureFileAsync doesn't work when maxResolution is set to verySmallQvga on 
> Windows 10
> --
>
> Key: CB-10539
> URL: https://issues.apache.org/jira/browse/CB-10539
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Reporter: Raghav
>Assignee: Raghav
>
> Tested on emulator and device. Changing the maxResolution to smallVga works. 
> This is a bug on Windows side, and they have been informed of it. We need to 
> implement a workaround till it gets resolved.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread Vladimir Kotikov (JIRA)

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

Vladimir Kotikov updated CB-10584:
--
Labels: Windows Windows10  (was: )

> Splashscreen plugin crashes the app on windows 10 when built with browserify
> 
>
> Key: CB-10584
> URL: https://issues.apache.org/jira/browse/CB-10584
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen, Windows
>Affects Versions: 3.2.0
> Environment: Windows 10
>Reporter: Alexander Sorokin
>Priority: Critical
>  Labels: Windows, Windows10
>
> {noformat}
> cordova create foo
> cd foo
> cordova platform add windows
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> add to config.xml:
> 
> cordova run --browserify
> {noformat}
> The app crashes right after start. Reported error message is: "WinJS is 
> undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread Vladimir Kotikov (JIRA)

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

Vladimir Kotikov updated CB-10584:
--
Priority: Critical  (was: Major)

> Splashscreen plugin crashes the app on windows 10 when built with browserify
> 
>
> Key: CB-10584
> URL: https://issues.apache.org/jira/browse/CB-10584
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen, Windows
>Affects Versions: 3.2.0
> Environment: Windows 10
>Reporter: Alexander Sorokin
>Priority: Critical
>  Labels: Windows, Windows10
>
> {noformat}
> cordova create foo
> cd foo
> cordova platform add windows
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> add to config.xml:
> 
> cordova run --browserify
> {noformat}
> The app crashes right after start. Reported error message is: "WinJS is 
> undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread Vladimir Kotikov (JIRA)

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

Vladimir Kotikov updated CB-10584:
--
Affects Version/s: (was: Master)
   3.2.0

> Splashscreen plugin crashes the app on windows 10 when built with browserify
> 
>
> Key: CB-10584
> URL: https://issues.apache.org/jira/browse/CB-10584
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen, Windows
>Affects Versions: 3.2.0
> Environment: Windows 10
>Reporter: Alexander Sorokin
>
> {noformat}
> cordova create foo
> cd foo
> cordova platform add windows
> cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
> add to config.xml:
> 
> cordova run --browserify
> {noformat}
> The app crashes right after start. Reported error message is: "WinJS is 
> undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-9474) Use fused location provider

2016-02-10 Thread Werner Beroux (JIRA)

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

Werner Beroux commented on CB-9474:
---

[~Zeph Davies] Fused is a high level API and as such provides only access to 
the granularity of desired precision not of the sensors used. For example it 
may just use cell tower, or wifi network nearby, and not GPS depending on 
situations.

> Use fused location provider
> ---
>
> Key: CB-9474
> URL: https://issues.apache.org/jira/browse/CB-9474
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Geolocation
>Reporter: Werner Beroux
>
> On Android, WebView/Chrome uses 
> [LocationManager|https://developer.android.com/reference/android/location/LocationManager.html]
>  to provide location updates (see [Chromium 
> LocationProviderFactory.java|https://chromium.googlesource.com/chromium/src.git/+/master/content/public/android/java/src/org/chromium/content/browser/LocationProviderFactory.java]).
> This is less reliable and uses more battery than the 
> [FusedLocationProviderApi|https://developers.google.com/android/reference/com/google/android/gms/location/FusedLocationProviderApi].
> It would be good to make use of FusedLocationProviderApi when available (that 
> is when Google Play Services are installed).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-9474) Use fused location provider

2016-02-10 Thread Zeph Davies (JIRA)

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

Zeph Davies commented on CB-9474:
-

+1 to this wish.
Does the fused location controller provide the option to not use GPS, though?

> Use fused location provider
> ---
>
> Key: CB-9474
> URL: https://issues.apache.org/jira/browse/CB-9474
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Geolocation
>Reporter: Werner Beroux
>
> On Android, WebView/Chrome uses 
> [LocationManager|https://developer.android.com/reference/android/location/LocationManager.html]
>  to provide location updates (see [Chromium 
> LocationProviderFactory.java|https://chromium.googlesource.com/chromium/src.git/+/master/content/public/android/java/src/org/chromium/content/browser/LocationProviderFactory.java]).
> This is less reliable and uses more battery than the 
> [FusedLocationProviderApi|https://developers.google.com/android/reference/com/google/android/gms/location/FusedLocationProviderApi].
> It would be good to make use of FusedLocationProviderApi when available (that 
> is when Google Play Services are installed).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-7685) Geolocation watch on Android continues when app in background

2016-02-10 Thread Zeph Davies (JIRA)

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

Zeph Davies commented on CB-7685:
-

What version of WebView do you use?
I have the opposite problem, and it's causing a headache.
I expect (with the plugin BackgroundMode) for locations to continue in the 
background.
With the latest WebViews, this does not happen. Instead, the locations timeout.

Can you confirm that this still occurs?

> Geolocation watch on Android continues when app in background
> -
>
> Key: CB-7685
> URL: https://issues.apache.org/jira/browse/CB-7685
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Geolocation
>Affects Versions: 3.5.0, 3.6.3
> Environment: Samsung Galaxy S3, Intel Yolo and others.
>Reporter: Clayton Grassick
>  Labels: Android, triaged
>
> When using HTML5 geolocation via navigator.geolocation.watchPosition, the GPS 
> continues even when the app is in the background, draining the battery.
> I have tried  to no effect. 
> Attempting to catch pause events to attempt to clearWatch did not appear to 
> stop it either.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-10584) Splashscreen plugin crashes the app on windows 10 when built with browserify

2016-02-10 Thread Alexander Sorokin (JIRA)
Alexander Sorokin created CB-10584:
--

 Summary: Splashscreen plugin crashes the app on windows 10 when 
built with browserify
 Key: CB-10584
 URL: https://issues.apache.org/jira/browse/CB-10584
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin SplashScreen, Windows
Affects Versions: Master
 Environment: Windows 10
Reporter: Alexander Sorokin


{noformat}
cordova create foo
cd foo
cordova platform add windows
cordova plugin add https://github.com/apache/cordova-plugin-splashscreen
add to config.xml:

cordova run --browserify
{noformat}

The app crashes right after start. Reported error message is: "WinJS is 
undefined".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10481) Update the docs according to windows8 deprecation

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10481:
-

Github user daserge commented on the pull request:

https://github.com/apache/cordova-docs/pull/478#issuecomment-182348840
  
@sarangan12, updated the links, please take a look.


> Update the docs according to windows8 deprecation
> -
>
> Key: CB-10481
> URL: https://issues.apache.org/jira/browse/CB-10481
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Docs, Windows
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Closed] (CB-10569) Mobilespec doesn't use edge versions of plugins

2016-02-10 Thread Alexander Sorokin (JIRA)

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

Alexander Sorokin closed CB-10569.
--
Resolution: Fixed

> Mobilespec doesn't use edge versions of plugins
> ---
>
> Key: CB-10569
> URL: https://issues.apache.org/jira/browse/CB-10569
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: mobile-spec
>Affects Versions: Master
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>
> When adding local plugins, mobilespec uses --searchPath argument to specify 
> the path to a plugin. Now, when plugin versions are pinned in the cli, if 
> tested plugin' minor or major version is higher than pinned one, it doesn't 
> take that plugin but fetches it from npm instead.
> The expected behavior would be to take local plugin regardless of its version.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10569) Mobilespec doesn't use edge versions of plugins

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10569:
-

Github user asfgit closed the pull request at:

https://github.com/apache/cordova-mobile-spec/pull/136


> Mobilespec doesn't use edge versions of plugins
> ---
>
> Key: CB-10569
> URL: https://issues.apache.org/jira/browse/CB-10569
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: mobile-spec
>Affects Versions: Master
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>
> When adding local plugins, mobilespec uses --searchPath argument to specify 
> the path to a plugin. Now, when plugin versions are pinned in the cli, if 
> tested plugin' minor or major version is higher than pinned one, it doesn't 
> take that plugin but fetches it from npm instead.
> The expected behavior would be to take local plugin regardless of its version.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10569) Mobilespec doesn't use edge versions of plugins

2016-02-10 Thread ASF subversion and git services (JIRA)

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

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

Commit fe36cf5e0c9218454848b63a29cde9ddc21a2cc0 in cordova-mobile-spec's branch 
refs/heads/master from [~alsorokin]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-mobile-spec.git;h=fe36cf5 ]

CB-10569 Mobilespec doesn't use edge versions of plugins


> Mobilespec doesn't use edge versions of plugins
> ---
>
> Key: CB-10569
> URL: https://issues.apache.org/jira/browse/CB-10569
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: mobile-spec
>Affects Versions: Master
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>
> When adding local plugins, mobilespec uses --searchPath argument to specify 
> the path to a plugin. Now, when plugin versions are pinned in the cli, if 
> tested plugin' minor or major version is higher than pinned one, it doesn't 
> take that plugin but fetches it from npm instead.
> The expected behavior would be to take local plugin regardless of its version.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10518) Cordova reports error events with incorrect log level

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10518:
-

GitHub user vladimir-kotikov opened a pull request:

https://github.com/apache/cordova-lib/pull/383

CB-10518 Correct log level and error messages for some cordova errors

Issue [CB-10518](https://issues.apache.org/jira/browse/CB-10518)

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

$ git pull https://github.com/MSOpenTech/cordova-lib CB-10518

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

https://github.com/apache/cordova-lib/pull/383.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 #383


commit 6ab2d67aa6d428c8f0214e75c43974a5cd483a7b
Author: Vladimir Kotikov 
Date:   2016-02-10T10:44:46Z

CB-10518 Correct log level and error messages for some cordova errors




> Cordova reports error events with incorrect log level
> -
>
> Key: CB-10518
> URL: https://issues.apache.org/jira/browse/CB-10518
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 6.0.0
>Reporter: Vladimir Kotikov
>Priority: Minor
>  Labels: triaged
>
> In case of fatal errors {{cordova run}} and {{cordova emulate}} methods emit 
> error messages using {{log}} event. This code probably should be changed to 
> use 'warn' level. (We can't use 'error' here due to its special meaning in 
> Node: https://nodejs.org/api/events.html#events_error_events)
> There is also other places, where 'log' events is used incorrectly:
> cordova-lib\src\cordova\targets.js:events.emit('log', 'An unexpected 
> error has occured');
> cordova-lib\src\plugman\browserify.js:events.emit('log', 'error while 
> generating cordova.js');
> cordova-lib\src\plugman\browserify.js:events.emit('log', 'Error 
> running platform version script');



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-7984) encodingType in Camera Plugin not supported on Android

2016-02-10 Thread dharmendra sharma (JIRA)

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

dharmendra sharma commented on CB-7984:
---

That has already updated on version 2.1.0 
Check this pull request 
https://github.com/MSOpenTech/cordova-plugin-camera/commit/2bb134bf6bc627a2da07064057b502b06b076703

Now this issue should be closed... 

> encodingType in Camera Plugin not supported on Android
> --
>
> Key: CB-7984
> URL: https://issues.apache.org/jira/browse/CB-7984
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Docs
>Affects Versions: 3.6.3
> Environment: testing mobilespec 3.6.3 version on Android 4.4.3 and 
> Android 4.0.4
>Reporter: Pavankumar Joshi
>Priority: Minor
>
> There is already a JIRA for “unsupported PNG format on Android”
> https://issues.apache.org/jira/browse/CB-7122.
> The Docs have to be updated to indicate that encodingType is not supported on 
> Android Platform



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-10583) Adding multiple platforms at once fails to install plugin(s) from a Git repo

2016-02-10 Thread Zarko Hristovski (JIRA)

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

Zarko Hristovski updated CB-10583:
--
Attachment: configTest.zip

Added a simple project that demonstrates the problem.
Simply unpack on your Mac, enter the folder and execute
cordova platform add ios android

> Adding multiple platforms at once fails to install plugin(s) from a Git repo
> 
>
> Key: CB-10583
> URL: https://issues.apache.org/jira/browse/CB-10583
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 6.0.0
> Environment: OSX
>Reporter: Zarko Hristovski
> Attachments: configTest.zip
>
>
> I get a plugin installation failure when trying to add both ios and android 
> as platforms at the same time. But this seems to happen only when the plugin 
> spec value points to its Git repository.
> I have
> {noformat}
>  spec="https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git#master";
>  />
> {noformat}
> specified in the config.xml
> {noformat}
> $ cordova platform add ios android
> Adding ios project...
> Running command: 
> /Users/zarko/.cordova/lib/npm_cache/cordova-ios/3.9.2/package/bin/create 
> /Users/zarko/temp/configTest/platforms/ios io.cordova.hellocordova 
> HelloCordova --cli
> iOS project created with cordova-ios@3.9.2
> Discovered plugin "cordova-plugin-crosswalk-webview" in config.xml. 
> Installing to the project
> Fetching plugin 
> "https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git"; 
> via git clone
> Repository 
> "https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git"; 
> checked out to git ref "master".
> Installing "cordova-plugin-crosswalk-webview" for ios
> /Users/zarko/temp/configTest/platforms/ios/CordovaLib/CordovaLib.xcodeproj/project.pbxproj
> /Users/zarko/temp/configTest/platforms/ios/HelloCordova.xcodeproj/project.pbxproj
> /Users/zarko/temp/configTest/platforms/ios/CordovaLib/CordovaLib.xcodeproj/project.pbxproj
> /Users/zarko/temp/configTest/platforms/ios/HelloCordova.xcodeproj/project.pbxproj
> Discovered plugin "cordova-plugin-whitelist" in config.xml. Installing to the 
> project
> Fetching plugin "cordova-plugin-whitelist@1" via npm
> Adding android project...
> Creating Cordova project for the Android platform:
>   Path: platforms/android
>   Package: io.cordova.hellocordova
>   Name: HelloCordova
>   Activity: MainActivity
>   Android target: android-23
> Android project created with cordova-android@5.1.0
> Discovered plugin "cordova-plugin-whitelist" in config.xml. Installing to the 
> project
> Fetching plugin "cordova-plugin-whitelist@1" via npm
> Installing "cordova-plugin-crosswalk-webview" for android
> Failed to install 'cordova-plugin-crosswalk-webview':Error: Variable(s) 
> missing: undefined
> at 
> /Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/cordova-lib/src/plugman/install.js:346:23
> at _fulfilled 
> (/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:787:54)
> at self.promiseDispatch.done 
> (/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:816:30)
> at Promise.promise.promiseDispatch 
> (/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:749:13)
> at 
> /Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:557:44
> at flush 
> (/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:108:17)
> at nextTickCallbackWith0Args (node.js:419:9)
> at process._tickCallback (node.js:348:13)
> Error: Variable(s) missing: undefined
> {noformat}
> My system information:
> OS: Mac OS X El Capitan
> Node Version: v4.3.0
> Xcode version: Xcode 7.2.1 Build version 7C1002 
> Cordova CLI: 6.0.0



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Created] (CB-10583) Adding multiple platforms at once fails to install plugin(s) from a Git repo

2016-02-10 Thread Zarko Hristovski (JIRA)
Zarko Hristovski created CB-10583:
-

 Summary: Adding multiple platforms at once fails to install 
plugin(s) from a Git repo
 Key: CB-10583
 URL: https://issues.apache.org/jira/browse/CB-10583
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 6.0.0
 Environment: OSX
Reporter: Zarko Hristovski


I get a plugin installation failure when trying to add both ios and android as 
platforms at the same time. But this seems to happen only when the plugin spec 
value points to its Git repository.

I have
{noformat}
https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git#master";
 />
{noformat}

specified in the config.xml

{noformat}
$ cordova platform add ios android

Adding ios project...
Running command: 
/Users/zarko/.cordova/lib/npm_cache/cordova-ios/3.9.2/package/bin/create 
/Users/zarko/temp/configTest/platforms/ios io.cordova.hellocordova HelloCordova 
--cli
iOS project created with cordova-ios@3.9.2
Discovered plugin "cordova-plugin-crosswalk-webview" in config.xml. Installing 
to the project
Fetching plugin 
"https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git"; via 
git clone
Repository 
"https://github.com/crosswalk-project/cordova-plugin-crosswalk-webview.git"; 
checked out to git ref "master".
Installing "cordova-plugin-crosswalk-webview" for ios
/Users/zarko/temp/configTest/platforms/ios/CordovaLib/CordovaLib.xcodeproj/project.pbxproj
/Users/zarko/temp/configTest/platforms/ios/HelloCordova.xcodeproj/project.pbxproj
/Users/zarko/temp/configTest/platforms/ios/CordovaLib/CordovaLib.xcodeproj/project.pbxproj
/Users/zarko/temp/configTest/platforms/ios/HelloCordova.xcodeproj/project.pbxproj
Discovered plugin "cordova-plugin-whitelist" in config.xml. Installing to the 
project
Fetching plugin "cordova-plugin-whitelist@1" via npm
Adding android project...
Creating Cordova project for the Android platform:
Path: platforms/android
Package: io.cordova.hellocordova
Name: HelloCordova
Activity: MainActivity
Android target: android-23
Android project created with cordova-android@5.1.0
Discovered plugin "cordova-plugin-whitelist" in config.xml. Installing to the 
project
Fetching plugin "cordova-plugin-whitelist@1" via npm
Installing "cordova-plugin-crosswalk-webview" for android
Failed to install 'cordova-plugin-crosswalk-webview':Error: Variable(s) 
missing: undefined
at 
/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/cordova-lib/src/plugman/install.js:346:23
at _fulfilled 
(/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:787:54)
at self.promiseDispatch.done 
(/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:816:30)
at Promise.promise.promiseDispatch 
(/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:749:13)
at 
/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:557:44
at flush 
(/Users/zarko/.nvm/versions/node/v4.3.0/lib/node_modules/cordova/node_modules/q/q.js:108:17)
at nextTickCallbackWith0Args (node.js:419:9)
at process._tickCallback (node.js:348:13)
Error: Variable(s) missing: undefined
{noformat}

My system information:

OS: Mac OS X El Capitan
Node Version: v4.3.0
Xcode version: Xcode 7.2.1 Build version 7C1002 
Cordova CLI: 6.0.0



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-10530) App freezes sometimes directly after starting on iOS

2016-02-10 Thread Michael Stanford (JIRA)

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

Michael Stanford edited comment on CB-10530 at 2/10/16 9:10 AM:


Easily reproduced with a new empty project. Add the device and console plugins, 
and the iOS platform. Then in the onDeviceReady function put a console log 
statement, followed by a delay loop of about 100ms. Run it on the 6S simulator. 
Console log never executes. CPU pegs. Reduce the delay to about 50ms and 
everything works great.





was (Author: michaelstanford):
I experienced this issue too, new in Cordova 6.0.0. It freezes on phones, and 
pegs the CPU on the simulator.

It does seem to be some kind of race condition: when the onDeviceReady function 
is short and fast, the issue doesn't occur. When the onDeviceReady function 
takes a sufficient time (critical time varies from run to run), it fails to 
complete. 

Easily reproduced with a new empty project. Add the device and console plugins, 
and the iOS platform. Then in the onDeviceReady function put a console log 
statement, followed by a delay loop of about 100ms. Run it on the 6S simulator. 
Console log never executes. CPU pegs. Reduce the delay to about 50ms and 
everything works great.



> App freezes sometimes directly after starting on iOS
> 
>
> Key: CB-10530
> URL: https://issues.apache.org/jira/browse/CB-10530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.0.0
> Environment: OSX El Capitan 10.11.3, XCODE (7.2.1), iOS 9.2.1, 
> cordova 6.0.0, ionic 1.7.14
>Reporter: Florian Krüger
>Priority: Critical
>  Labels: triaged
> Attachments: Instruments.trace.zip
>
>
> * Installed the "ionic start myApp sidemenu" example application
> * Start XCODE (7.2.1)
> * Start the app by clicking the run button from  xCODE
> * The app probably starts as expected.
> * Repeat the start process until the app freezes.
> The app sometimes freezes completely. If this happens you cannot do anything 
> with the app (you need to push the home button and close the app via task 
> manager). I had the same issue for another more complex app.
> The CPU stays at around 99% workload.
> I made a snapshot of the profiler (Instruments)
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-10575) --searchpath sometimes fails to find plugin repositories

2016-02-10 Thread Alexander Sorokin (JIRA)

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

Alexander Sorokin edited comment on CB-10575 at 2/10/16 9:00 AM:
-

This doesn't look like a bug to me.

-- searchPath is used to specify an additional place to look for suitable 
plugin.
Right now it actually finds the plugin, sees that its version is not suitable 
(i.e. higher than pinned one), then goes to npm to fetch suitable plugin.


was (Author: alsorokin):
This doesn't look like a bug to me.

-- searchPath is used to specify an additional place to look for suitable 
plugin.
Right now it actually finds the plugin, sees that its version is not suitable 
(i.e. higher than pinned one), then goes to npm to fetch suitable plugin.

Seems like expected behavior.

> --searchpath sometimes fails to find plugin repositories
> 
>
> Key: CB-10575
> URL: https://issues.apache.org/jira/browse/CB-10575
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Reporter: Richard B Knoll
>  Labels: triaged
>
> This was affecting mobilespec so that it occasionally would fetch plugins 
> from npm instead of using local repos.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-10575) --searchpath sometimes fails to find plugin repositories

2016-02-10 Thread Alexander Sorokin (JIRA)

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

Alexander Sorokin edited comment on CB-10575 at 2/10/16 9:00 AM:
-

This doesn't look like a bug to me.

-- searchPath is used to specify an additional place to look for suitable 
plugin.
Right now it actually finds the plugin, sees that its version is not suitable 
(i.e. higher than pinned one), then goes to npm to fetch suitable plugin.

Seems like expected behavior.


was (Author: alsorokin):
This doesn't look like a bug to me.

-- searchPath is used to specify an additional place to look for suitable 
plugin.
Right now it actually finds the plugin, sees that its version is not suitable 
(i.e. higher than pinned one), then goes to npm to fetch suitable plugin.

Seems like expected behavior to me.

> --searchpath sometimes fails to find plugin repositories
> 
>
> Key: CB-10575
> URL: https://issues.apache.org/jira/browse/CB-10575
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Reporter: Richard B Knoll
>  Labels: triaged
>
> This was affecting mobilespec so that it occasionally would fetch plugins 
> from npm instead of using local repos.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-6498) Misleading documentation in Android Quirks

2016-02-10 Thread dharmendra sharma (JIRA)

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

dharmendra sharma updated CB-6498:
--
Attachment: 0001-Fixed-doccument-issue.patch

Added new pull request  with document fix.
https://github.com/Accenture/cordova-plugin-splashscreen/commit/803d52fc4a7349be131650c615723477e6e534a4

> Misleading documentation in Android Quirks
> --
>
> Key: CB-6498
> URL: https://issues.apache.org/jira/browse/CB-6498
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Reporter: Kuan Yi Ming
> Attachments: 0001-Fixed-doccument-issue.patch
>
>
> As per the docs under the Android Quirks section:
> {code}
> In your config.xml, you need to add the following preference
> ``
> Where foo is the name of the splashscreen file. Preferably a 9 patch file. 
> Make sure to add your splashcreen files to your res/xml directory under the 
> appropriate folders.
> {code}
> The documentation implies the splashscreen files go into the res/xml 
> directory, but they actually go into the res/drawable folders instead. The 
> file name is also optional (if not present, it defaults to splash.png) but 
> this is not mentioned here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10575) --searchpath sometimes fails to find plugin repositories

2016-02-10 Thread Alexander Sorokin (JIRA)

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

Alexander Sorokin commented on CB-10575:


This doesn't look like a bug to me.

-- searchPath is used to specify an additional place to look for suitable 
plugin.
Right now it actually finds the plugin, sees that its version is not suitable 
(i.e. higher than pinned one), then goes to npm to fetch suitable plugin.

Seems like expected behavior to me.

> --searchpath sometimes fails to find plugin repositories
> 
>
> Key: CB-10575
> URL: https://issues.apache.org/jira/browse/CB-10575
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Reporter: Richard B Knoll
>  Labels: triaged
>
> This was affecting mobilespec so that it occasionally would fetch plugins 
> from npm instead of using local repos.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Comment Edited] (CB-10530) App freezes sometimes directly after starting on iOS

2016-02-10 Thread Michael Stanford (JIRA)

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

Michael Stanford edited comment on CB-10530 at 2/10/16 8:53 AM:


I experienced this issue too, new in Cordova 6.0.0. It freezes on phones, and 
pegs the CPU on the simulator.

It does seem to be some kind of race condition: when the onDeviceReady function 
is short and fast, the issue doesn't occur. When the onDeviceReady function 
takes a sufficient time (critical time varies from run to run), it fails to 
complete. 

Easily reproduced with a new empty project. Add the device and console plugins, 
and the iOS platform. Then in the onDeviceReady function put a console log 
statement, followed by a delay loop of about 100ms. Run it on the 6S simulator. 
Console log never executes. CPU pegs. Reduce the delay to about 50ms and 
everything works great.




was (Author: michaelstanford):
I experienced this issue too, new in Cordova 6.0.0. It does seem to be some 
kind of race condition: when the onDeviceReady function is short and fast, the 
issue doesn't occur. When the onDeviceReady function takes a sufficient time 
(critical time varies from run to run), it fails to complete. 

I put a console.log statement at the beginning of the onDeviceReady function, 
followed immediately by a return. This never hung. Moving the return statement 
sufficiently far down the onDeviceReady function, so some time was consumed, 
caused the console.log statement never to print, making it appear that the 
onDeviceReady function was not being called.

I don't have the splash screen plugin in my project. These are the plugins I 
have apart from device:

cordova-plugin-camera 2.1.0 "Camera"
cordova-plugin-console 1.0.2 "Console"
cordova-plugin-contacts 2.0.2-dev "Contacts"
cordova-plugin-customurlscheme 4.1.3 "Custom URL scheme"
cordova-plugin-ios-longpress-fix 1.1.0 "iOS LongPress Fix"
cordova-plugin-network-information 1.2.0 "Network Information"
cordova-plugin-statusbar 2.1.0 "StatusBar"
cordova-plugin-whitelist 1.2.1 "Whitelist"
ionic-plugin-keyboard 1.0.8 "Keyboard"
phonegap-plugin-push 1.5.3 "PushPlugin"



> App freezes sometimes directly after starting on iOS
> 
>
> Key: CB-10530
> URL: https://issues.apache.org/jira/browse/CB-10530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.0.0
> Environment: OSX El Capitan 10.11.3, XCODE (7.2.1), iOS 9.2.1, 
> cordova 6.0.0, ionic 1.7.14
>Reporter: Florian Krüger
>Priority: Critical
>  Labels: triaged
> Attachments: Instruments.trace.zip
>
>
> * Installed the "ionic start myApp sidemenu" example application
> * Start XCODE (7.2.1)
> * Start the app by clicking the run button from  xCODE
> * The app probably starts as expected.
> * Repeat the start process until the app freezes.
> The app sometimes freezes completely. If this happens you cannot do anything 
> with the app (you need to push the home button and close the app via task 
> manager). I had the same issue for another more complex app.
> The CPU stays at around 99% workload.
> I made a snapshot of the profiler (Instruments)
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Issue Comment Deleted] (CB-6498) Misleading documentation in Android Quirks

2016-02-10 Thread dharmendra sharma (JIRA)

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

dharmendra sharma updated CB-6498:
--
Comment: was deleted

(was: Added pull request for this document correction 
https://github.com/apache/cordova-plugin-splashscreen/pull/80)

> Misleading documentation in Android Quirks
> --
>
> Key: CB-6498
> URL: https://issues.apache.org/jira/browse/CB-6498
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Reporter: Kuan Yi Ming
>
> As per the docs under the Android Quirks section:
> {code}
> In your config.xml, you need to add the following preference
> ``
> Where foo is the name of the splashscreen file. Preferably a 9 patch file. 
> Make sure to add your splashcreen files to your res/xml directory under the 
> appropriate folders.
> {code}
> The documentation implies the splashscreen files go into the res/xml 
> directory, but they actually go into the res/drawable folders instead. The 
> file name is also optional (if not present, it defaults to splash.png) but 
> this is not mentioned here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Updated] (CB-6498) Misleading documentation in Android Quirks

2016-02-10 Thread dharmendra sharma (JIRA)

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

dharmendra sharma updated CB-6498:
--
Attachment: (was: fix_document_spalashscreen.patch)

> Misleading documentation in Android Quirks
> --
>
> Key: CB-6498
> URL: https://issues.apache.org/jira/browse/CB-6498
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Reporter: Kuan Yi Ming
>
> As per the docs under the Android Quirks section:
> {code}
> In your config.xml, you need to add the following preference
> ``
> Where foo is the name of the splashscreen file. Preferably a 9 patch file. 
> Make sure to add your splashcreen files to your res/xml directory under the 
> appropriate folders.
> {code}
> The documentation implies the splashscreen files go into the res/xml 
> directory, but they actually go into the res/drawable folders instead. The 
> file name is also optional (if not present, it defaults to splash.png) but 
> this is not mentioned here.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10481) Update the docs according to windows8 deprecation

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10481:
-

Github user daserge commented on a diff in the pull request:

https://github.com/apache/cordova-docs/pull/478#discussion_r52428377
  
--- Diff: www/docs/en/dev/guide/platforms/win8/index.md ---
@@ -49,37 +49,23 @@ on how to support IE along with comparable WebKit 
browsers.
 
 To develop apps for Windows platform you need:
 
-- A Windows 8.1, 32 or 64-bit machine (_Home_, _Pro_, or _Enterprise_ 
editions) with minimum 4 GB of RAM.
-
-- Windows 8.0, 8.1 or 10, 32 or 64-bit _Home_, _Pro_, or _Enterprise_
-  editions, along with
-  [Visual Studio 2012 Express](http://www.visualstudio.com/downloads) 
-  or Visual Studio 2013.  Visual Studio 2015 is not able to build Windows 
8.0 apps.
-
-To develop apps for Windows 8.0 and 8.1 (including Windows Phone 8.1):
-
-- Windows 8.1 or Windows 10, 32 or 64-bit _Home_, _Pro_, or _Enterprise_ 
editions,
-  along with 
-  [Visual Studio 2013 Express](http://www.visualstudio.com/downloads)
-  or higher. An evaluation version of Windows 8.1 Enterprise is
+- A Windows 8.1, 32 or 64-bit machine (_Home_, _Pro_, or _Enterprise_ 
editions) 
+  with minimum 4 GB of RAM along with [Visual Studio 
2015](http://www.visualstudio.com/downloads) 
--- End diff --

Oh, I see it's not working now - I'll update it to 
[https://technet.microsoft.com/evalcenter/hh699156.aspx](https://technet.microsoft.com/evalcenter/hh699156.aspx).


> Update the docs according to windows8 deprecation
> -
>
> Key: CB-10481
> URL: https://issues.apache.org/jira/browse/CB-10481
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Docs, Windows
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10481) Update the docs according to windows8 deprecation

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10481:
-

Github user daserge commented on a diff in the pull request:

https://github.com/apache/cordova-docs/pull/478#discussion_r52428160
  
--- Diff: www/docs/en/dev/guide/platforms/win8/index.md ---
@@ -49,37 +49,23 @@ on how to support IE along with comparable WebKit 
browsers.
 
 To develop apps for Windows platform you need:
 
-- A Windows 8.1, 32 or 64-bit machine (_Home_, _Pro_, or _Enterprise_ 
editions) with minimum 4 GB of RAM.
-
-- Windows 8.0, 8.1 or 10, 32 or 64-bit _Home_, _Pro_, or _Enterprise_
-  editions, along with
-  [Visual Studio 2012 Express](http://www.visualstudio.com/downloads) 
-  or Visual Studio 2013.  Visual Studio 2015 is not able to build Windows 
8.0 apps.
-
-To develop apps for Windows 8.0 and 8.1 (including Windows Phone 8.1):
-
-- Windows 8.1 or Windows 10, 32 or 64-bit _Home_, _Pro_, or _Enterprise_ 
editions,
-  along with 
-  [Visual Studio 2013 Express](http://www.visualstudio.com/downloads)
-  or higher. An evaluation version of Windows 8.1 Enterprise is
+- A Windows 8.1, 32 or 64-bit machine (_Home_, _Pro_, or _Enterprise_ 
editions) 
+  with minimum 4 GB of RAM along with [Visual Studio 
2015](http://www.visualstudio.com/downloads) 
--- End diff --

@sarangan12, could you please clarify which link do you mean?
There is a link to the Windows evaluation version below:

>  An evaluation version of Windows 8.1 Enterprise is available from the 
[Microsoft Developer 
Network](http://msdn.microsoft.com/en-US/evalcenter/jj554510).


> Update the docs according to windows8 deprecation
> -
>
> Key: CB-10481
> URL: https://issues.apache.org/jira/browse/CB-10481
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Docs, Windows
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10530) App freezes sometimes directly after starting on iOS

2016-02-10 Thread Michael Stanford (JIRA)

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

Michael Stanford commented on CB-10530:
---

I experienced this issue too, new in Cordova 6.0.0. It does seem to be some 
kind of race condition: when the onDeviceReady function is short and fast, the 
issue doesn't occur. When the onDeviceReady function takes a sufficient time 
(critical time varies from run to run), it fails to complete. 

I put a console.log statement at the beginning of the onDeviceReady function, 
followed immediately by a return. This never hung. Moving the return statement 
sufficiently far down the onDeviceReady function, so some time was consumed, 
caused the console.log statement never to print, making it appear that the 
onDeviceReady function was not being called.

I don't have the splash screen plugin in my project. These are the plugins I 
have apart from device:

cordova-plugin-camera 2.1.0 "Camera"
cordova-plugin-console 1.0.2 "Console"
cordova-plugin-contacts 2.0.2-dev "Contacts"
cordova-plugin-customurlscheme 4.1.3 "Custom URL scheme"
cordova-plugin-ios-longpress-fix 1.1.0 "iOS LongPress Fix"
cordova-plugin-network-information 1.2.0 "Network Information"
cordova-plugin-statusbar 2.1.0 "StatusBar"
cordova-plugin-whitelist 1.2.1 "Whitelist"
ionic-plugin-keyboard 1.0.8 "Keyboard"
phonegap-plugin-push 1.5.3 "PushPlugin"



> App freezes sometimes directly after starting on iOS
> 
>
> Key: CB-10530
> URL: https://issues.apache.org/jira/browse/CB-10530
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.0.0
> Environment: OSX El Capitan 10.11.3, XCODE (7.2.1), iOS 9.2.1, 
> cordova 6.0.0, ionic 1.7.14
>Reporter: Florian Krüger
>Priority: Critical
>  Labels: triaged
> Attachments: Instruments.trace.zip
>
>
> * Installed the "ionic start myApp sidemenu" example application
> * Start XCODE (7.2.1)
> * Start the app by clicking the run button from  xCODE
> * The app probably starts as expected.
> * Repeat the start process until the app freezes.
> The app sometimes freezes completely. If this happens you cannot do anything 
> with the app (you need to push the home button and close the app via task 
> manager). I had the same issue for another more complex app.
> The CPU stays at around 99% workload.
> I made a snapshot of the profiler (Instruments)
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Resolved] (CB-10482) Remove references to windows8 from cordova-lib/cli

2016-02-10 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov resolved CB-10482.
--
Resolution: Fixed

> Remove references to windows8 from cordova-lib/cli
> --
>
> Key: CB-10482
> URL: https://issues.apache.org/jira/browse/CB-10482
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: CordovaLib
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10482) Remove references to windows8 from cordova-lib/cli

2016-02-10 Thread ASF subversion and git services (JIRA)

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

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

Commit a3285602b88f4e40f08c178b8b26c918c91d0dce in cordova-lib's branch 
refs/heads/master from [~daserge]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-lib.git;h=a328560 ]

CB-10482 Remove references to windows8 from cordova-lib/cli

Added Plugman tests for non-default engines handling


> Remove references to windows8 from cordova-lib/cli
> --
>
> Key: CB-10482
> URL: https://issues.apache.org/jira/browse/CB-10482
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: CordovaLib
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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



[jira] [Commented] (CB-10482) Remove references to windows8 from cordova-lib/cli

2016-02-10 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10482:
-

Github user asfgit closed the pull request at:

https://github.com/apache/cordova-lib/pull/378


> Remove references to windows8 from cordova-lib/cli
> --
>
> Key: CB-10482
> URL: https://issues.apache.org/jira/browse/CB-10482
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: CordovaLib
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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