[jira] [Commented] (CB-3020) HideKeyboardFormAccessoryBar and KeyboardShrinksView show white bar instead of removing it

2013-10-04 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-3020:
--

Use the latest cordova CLI to create a project. Install from npm. See 
http://docs.cordova.io for instructions.

> HideKeyboardFormAccessoryBar and KeyboardShrinksView show white bar instead 
> of removing it
> --
>
> Key: CB-3020
> URL: https://issues.apache.org/jira/browse/CB-3020
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 2.6.0, 3.0.0
> Environment: ios 6.1.3
>Reporter: Horst Perfect
>Assignee: Shazron Abdullah
>Priority: Minor
>  Labels: bug, ios, ios6.1.3
> Fix For: 3.1.0
>
> Attachments: Classes.zip
>
>
> I use phonegap 2.6 with the two new preferences HideKeyboardFormAccessoryBar 
> KeyboardShrinksView set to true. Instead of the AccessoryBar a white bar 
> appears ([screenshot|http://i.stack.imgur.com/3fgV8.png]).
> This is just happening when i set *both* of the preferences to true. When i 
> just set the AccessoryBar preference to true the bar disappears as planned.
> Horst



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Assigned] (CB-4990) Can't run emulator from cordova cli

2013-10-04 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah reassigned CB-4990:


Assignee: Shazron Abdullah

> Can't run emulator from cordova cli
> ---
>
> Key: CB-4990
> URL: https://issues.apache.org/jira/browse/CB-4990
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI, iOS
>Affects Versions: 3.1.0
> Environment: OS X 10.8.5, Xcode 5, ios-sim 1.8.2
>Reporter: Michael Gauthier
>Assignee: Shazron Abdullah
> Attachments: log.txt
>
>
> Cordova 3.1.0 CLI doesn't run the emulator properly for iOS. It might be 
> broken for other platforms as well. Cordova CLI 3.1.0 was installed using 
> {{npm -g}}
> In the following test, the project is created and the ios platform is added. 
> The {{cordova emulate ios}} looks like it compiles in the background but the 
> emulator is never opened.
> {code:none}
> $ cordova create test-cli com.silverorange.test-cli TestCLI
> $ cd test-cli
> $ cordova platform add ios
> $ cordova emulate ios
> {code}
> If I enter the platform dir and run the emulate command directly, the 
> ios-simulator opens as expected.
> {code:none}
> $ cd platforms/ios/cordova
> $ ./emulate
> {code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4940) iOS7 Keyboard Appearance Resizes View Frame

2013-10-04 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-4940:
--

Not sure if CB-4999 is related

> iOS7 Keyboard Appearance Resizes View Frame
> ---
>
> Key: CB-4940
> URL: https://issues.apache.org/jira/browse/CB-4940
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.0.0
> Environment: XCode 5, iOS 7, Phonegap 3, Sencha Touch 2.1
>Reporter: Brad Pritchard
> Attachments: iOS Simulator Screen shot Sep 27, 2013 2.47.47 PM.png
>
>
> This is a similar issue to CB-3020, albeit slightly different.
> Our situation is this: we have a PhoneGap 3.0 project, using Sencha Touch as 
> the view framework. Our views are housed within a Sencha Touch TabPanel, 
> which shows tabs docked at the bottom of the viewport.
> Since we do not want the screen to shrink, we are setting KeyboardShrinksView 
> to false in our config.xml.
> When an input receives focus, we are seeing that iOS 7 resizes the viewport 
> to be the size of the screen minus the height of the keyboard. Since the 
> TabPanel is absolutely positioned with a bottom of 0, the tabs are fixed 
> right above the keyboard.
> We would like the webView to remain the same size, and the focused input to 
> scroll into view when clicked. The assumption here would be that either:
> # The viewport needs to be re-expanded after the keyboard shows to get it 
> back to the height of the screen (and thus pushing the tabs "below" the 
> keyboard), or
> # The webView and/or scrollView need to be manipulated after the keyboard 
> shows, so that the content of the app (namely the TabPanel) scrolls off the 
> bottom of the shrinked viewport, and thus out of the way.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4990) Can't run emulator from cordova cli

2013-10-04 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-4990:
--

Yes. I expected cordova emulate to use the "emulate" script, but this change 
was a long time ago to use "run". It only broke because I added device deploy 
support to "run", before then it always did emulate. Entirely my oversight...

> Can't run emulator from cordova cli
> ---
>
> Key: CB-4990
> URL: https://issues.apache.org/jira/browse/CB-4990
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI, iOS
>Affects Versions: 3.1.0
> Environment: OS X 10.8.5, Xcode 5, ios-sim 1.8.2
>Reporter: Michael Gauthier
> Attachments: log.txt
>
>
> Cordova 3.1.0 CLI doesn't run the emulator properly for iOS. It might be 
> broken for other platforms as well. Cordova CLI 3.1.0 was installed using 
> {{npm -g}}
> In the following test, the project is created and the ios platform is added. 
> The {{cordova emulate ios}} looks like it compiles in the background but the 
> emulator is never opened.
> {code:none}
> $ cordova create test-cli com.silverorange.test-cli TestCLI
> $ cd test-cli
> $ cordova platform add ios
> $ cordova emulate ios
> {code}
> If I enter the platform dir and run the emulate command directly, the 
> ios-simulator opens as expected.
> {code:none}
> $ cd platforms/ios/cordova
> $ ./emulate
> {code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Closed] (CB-4940) iOS7 Keyboard Appearance Resizes View Frame

2013-10-04 Thread Brad Pritchard (JIRA)

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

Brad Pritchard closed CB-4940.
--

Resolution: Not A Problem

I created a new skeleton project using Sencha Touch 2.3, and wrapped it into a 
new skeleton project using Phonegap 3.0.

I modified the skeleton Sencha view (/app/view/Main.js) and added in a long 
form panel (longer than half the screen, which is what shows when the keyboard 
appears).

When running via Xcode and an iOS 7 simulator, the keyboard pops up when 
tapping a form field. The screen shrinks, and the correct field is scrolled to.

In this skeleton project, however, the WebView does NOT shrink. Thus, it 
appears that the previously-reported problem was either fixed in Sencha Touch 
2.3, or my particular application has other constraints that are causing this 
issue (more likely).

I'm closing this issue, as there appears to be no problem with the Phonegap 
implementation.

> iOS7 Keyboard Appearance Resizes View Frame
> ---
>
> Key: CB-4940
> URL: https://issues.apache.org/jira/browse/CB-4940
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.0.0
> Environment: XCode 5, iOS 7, Phonegap 3, Sencha Touch 2.1
>Reporter: Brad Pritchard
> Attachments: iOS Simulator Screen shot Sep 27, 2013 2.47.47 PM.png
>
>
> This is a similar issue to CB-3020, albeit slightly different.
> Our situation is this: we have a PhoneGap 3.0 project, using Sencha Touch as 
> the view framework. Our views are housed within a Sencha Touch TabPanel, 
> which shows tabs docked at the bottom of the viewport.
> Since we do not want the screen to shrink, we are setting KeyboardShrinksView 
> to false in our config.xml.
> When an input receives focus, we are seeing that iOS 7 resizes the viewport 
> to be the size of the screen minus the height of the keyboard. Since the 
> TabPanel is absolutely positioned with a bottom of 0, the tabs are fixed 
> right above the keyboard.
> We would like the webView to remain the same size, and the focused input to 
> scroll into view when clicked. The assumption here would be that either:
> # The viewport needs to be re-expanded after the keyboard shows to get it 
> back to the height of the screen (and thus pushing the tabs "below" the 
> keyboard), or
> # The webView and/or scrollView need to be manipulated after the keyboard 
> shows, so that the content of the app (namely the TabPanel) scrolls off the 
> bottom of the shrinked viewport, and thus out of the way.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4999) Cordova UIWebView is 20px too tall on iOS 6

2013-10-04 Thread Greg Wilson (JIRA)

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

Greg Wilson commented on CB-4999:
-

I think that removing t creates other issues. I'll confirm and email you back. 



> Cordova UIWebView is 20px too tall on iOS 6
> ---
>
> Key: CB-4999
> URL: https://issues.apache.org/jira/browse/CB-4999
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.1.0
> Environment: iOS 6.1
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: 3.2.0
>
>
> To see, create a new 3.1.0 project try this code in iOS 6:
> {code}
> 
> top
> bottom
> 
> {code}
> Expected:
> iOS 6 - UIWebView height is the correct size of the view -- whole window 
> height minus the statusbar.
> Actual:
> iOS 6 - UIWebView height is whole window height.
> Verified on the iOS 6.1. Simulator and an iPhone 5 with iOS 6.1.4.
> This is not an iOS 7 SDK related problem - compiling under the iOS 6.1. SDK 
> (in Xcode 4.6.3) shows the same bug.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Resolved] (CB-4999) Cordova UIWebView is 20px too tall on iOS 6

2013-10-04 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-4999.
--

Resolution: Not A Problem

The UIWebView is already correctly sized, and takes into account the statusbar 
already. The meta tag viewport implementation of the UIWebView does not take 
into account the statusbar -- thus you will have to remove the 
"height=device-height" value

> Cordova UIWebView is 20px too tall on iOS 6
> ---
>
> Key: CB-4999
> URL: https://issues.apache.org/jira/browse/CB-4999
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.1.0
> Environment: iOS 6.1
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: 3.2.0
>
>
> To see, create a new 3.1.0 project try this code in iOS 6:
> {code}
> 
> top
> bottom
> 
> {code}
> Expected:
> iOS 6 - UIWebView height is the correct size of the view -- whole window 
> height minus the statusbar.
> Actual:
> iOS 6 - UIWebView height is whole window height.
> Verified on the iOS 6.1. Simulator and an iPhone 5 with iOS 6.1.4.
> This is not an iOS 7 SDK related problem - compiling under the iOS 6.1. SDK 
> (in Xcode 4.6.3) shows the same bug.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4472) webviewbounce vs uiwebviewbounce

2013-10-04 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-4472:
--

I can only comment on Cordova here, this is not a PhoneGap Build issue tracker.

Cordova has no UIWebViewBounce preference starting with Cordova 2.6.0, the 
preference is DisallowOverscroll.

> webviewbounce vs uiwebviewbounce
> 
>
> Key: CB-4472
> URL: https://issues.apache.org/jira/browse/CB-4472
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.0.0
> Environment: phonegap 3.0.0-0.14.0
>Reporter: Oliver Michalak
>Assignee: Shazron Abdullah
>
> In config.xml, we can define "webviewbounce" to be true or false.
> "phonegap local build ios" will create two entries in the 
> platform/ios/www/config.xml file in that blongs to webview bouncing:
> "webviewbounce" AND "uiwebviewbounce" - the later is probably wrong and will 
> not be filled with the value from the original webviewbounce value
> The cordovalLib on iOS parses the "uiwebviewbounce" only.
> As a result, the general "webviewbounce" will completely be ignored, after 
> each compile, you have to manually fix the "uiwebviewbounce" value.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4999) Cordova UIWebView is 20px too tall on iOS 6

2013-10-04 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-4999:
--

Hmm - the webView dimensions ARE 320x460 which are correct.
If I remove "height=device-height" it conforms to the right dimensions.

> Cordova UIWebView is 20px too tall on iOS 6
> ---
>
> Key: CB-4999
> URL: https://issues.apache.org/jira/browse/CB-4999
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.1.0
> Environment: iOS 6.1
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: 3.2.0
>
>
> To see, create a new 3.1.0 project try this code in iOS 6:
> {code}
> 
> top
> bottom
> 
> {code}
> Expected:
> iOS 6 - UIWebView height is the correct size of the view -- whole window 
> height minus the statusbar.
> Actual:
> iOS 6 - UIWebView height is whole window height.
> Verified on the iOS 6.1. Simulator and an iPhone 5 with iOS 6.1.4.
> This is not an iOS 7 SDK related problem - compiling under the iOS 6.1. SDK 
> (in Xcode 4.6.3) shows the same bug.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4872) Create os/sdk version scripts for engine tag

2013-10-04 Thread ASF subversion and git services (JIRA)

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

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

Commit 500123ffc0db18b72374fc10676d7e7ab8066f6c in branch refs/heads/sdkCheck 
from [~timkim]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-wp8.git;h=500123f ]

CB-4872: Added wp7 and wp8 sdk version


> Create os/sdk version scripts for engine tag
> 
>
> Key: CB-4872
> URL: https://issues.apache.org/jira/browse/CB-4872
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Android, BlackBerry, iOS, Plugman, Windows 8, WP7, WP8
>Affects Versions: 3.0.0
>Reporter: Tim Kim
>Assignee: Tim Kim
>Priority: Minor
> Fix For: 3.2.0
>
>
> The engine tag is now able to check any of Cordova components's version so 
> it's time to implement the OS/SDK version scripts. This will allow plugin 
> authors to specify what version of OS/SDK is needed using the  tag in 
> the plugin.xml.
> eg,
>  
>   
>   
>   
> 
> These scripts will be listed in the default engines within Plugman so that a 
> user may easily reference them in the engine tag without having to provide a 
> location/platform attribute in the engine tag:
> https://git-wip-us.apache.org/repos/asf?p=cordova-plugman.git;a=blob;f=src/util/default-engines.js;h=4fd4a657b9cf6b494fece8b914c7c1ea511e3ca6;hb=1fa97a4161410f411e115362c293d88180319d9d
> Related to this ticket: https://issues.apache.org/jira/browse/CB-4036



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (CB-4999) Cordova UIWebView is 20px too tall on iOS 6

2013-10-04 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-4999:


 Summary: Cordova UIWebView is 20px too tall on iOS 6
 Key: CB-4999
 URL: https://issues.apache.org/jira/browse/CB-4999
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: 3.1.0
 Environment: iOS 6.1
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah
 Fix For: 3.2.0


To see, create a new 3.1.0 project try this code in iOS 6:

{code}

top
bottom

{code}

Expected:
iOS 6 - UIWebView height is the correct size of the view -- whole window height 
minus the statusbar.

Actual:
iOS 6 - UIWebView height is whole window height.

Verified on the iOS 6.1. Simulator and an iPhone 5 with iOS 6.1.4.

This is not an iOS 7 SDK related problem - compiling under the iOS 6.1. SDK (in 
Xcode 4.6.3) shows the same bug.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Closed] (CB-4997) Error: An error occured during creation of android sub-project.

2013-10-04 Thread Adonis K. (JIRA)

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

Adonis K. closed CB-4997.
-

Resolution: Invalid

> Error: An error occured during creation of android sub-project.
> ---
>
> Key: CB-4997
> URL: https://issues.apache.org/jira/browse/CB-4997
> Project: Apache Cordova
>  Issue Type: Bug
> Environment: Windows 8.1 x64
> cordova cli 3.1.0-0.1.0
> PowerShell 3
>Reporter: Adonis K.
>Priority: Minor
>
> Running these commands from PowerShell:
> cd ~/
> cordova create test com.varemenos.test "test"
> cd test
> cordova platform add android
> result in the error belowc:
> [Error: An error occured during creation of android sub-project.]
> I already tried removing .cordova, also updating android and then adding it 
> to the PATH



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4997) Error: An error occured during creation of android sub-project.

2013-10-04 Thread Adonis K. (JIRA)

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

Adonis K. commented on CB-4997:
---

Seems like apache-ant was missing

> Error: An error occured during creation of android sub-project.
> ---
>
> Key: CB-4997
> URL: https://issues.apache.org/jira/browse/CB-4997
> Project: Apache Cordova
>  Issue Type: Bug
> Environment: Windows 8.1 x64
> cordova cli 3.1.0-0.1.0
> PowerShell 3
>Reporter: Adonis K.
>Priority: Minor
>
> Running these commands from PowerShell:
> cd ~/
> cordova create test com.varemenos.test "test"
> cd test
> cordova platform add android
> result in the error belowc:
> [Error: An error occured during creation of android sub-project.]
> I already tried removing .cordova, also updating android and then adding it 
> to the PATH



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Comment Edited] (CB-4472) webviewbounce vs uiwebviewbounce

2013-10-04 Thread ian drake (JIRA)

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

ian drake edited comment on CB-4472 at 10/4/13 6:37 PM:


Seeing the same thing. 

Running:
PhoneGap 3.0.0-0.14.0
Cordova 3.1.0

Running Cordova Prepare ios on a windows machine which seems to prepare the 
files OK, except for this problem.  


was (Author: idrake):
Seeing the same thing. 

Running:
PhoneGap 3.0.0-0.14.0
Cordova 3.1.0

Running Cordova Prepare ios on a windows machine which seems to prepare the 
files OK, except for this problem.  

Setting the Config.xml in platforms/ios manually fixes the problem.

> webviewbounce vs uiwebviewbounce
> 
>
> Key: CB-4472
> URL: https://issues.apache.org/jira/browse/CB-4472
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.0.0
> Environment: phonegap 3.0.0-0.14.0
>Reporter: Oliver Michalak
>Assignee: Shazron Abdullah
>
> In config.xml, we can define "webviewbounce" to be true or false.
> "phonegap local build ios" will create two entries in the 
> platform/ios/www/config.xml file in that blongs to webview bouncing:
> "webviewbounce" AND "uiwebviewbounce" - the later is probably wrong and will 
> not be filled with the value from the original webviewbounce value
> The cordovalLib on iOS parses the "uiwebviewbounce" only.
> As a result, the general "webviewbounce" will completely be ignored, after 
> each compile, you have to manually fix the "uiwebviewbounce" value.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4472) webviewbounce vs uiwebviewbounce

2013-10-04 Thread ian drake (JIRA)

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

ian drake commented on CB-4472:
---

Seeing the same thing. 

Running:
PhoneGap 3.0.0-0.14.0
Cordova 3.1.0

Running Cordova Prepare ios on a windows machine which seems to prepare the 
files OK, except for this problem.  

Setting the Config.xml in platforms/ios manually fixes the problem.

> webviewbounce vs uiwebviewbounce
> 
>
> Key: CB-4472
> URL: https://issues.apache.org/jira/browse/CB-4472
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.0.0
> Environment: phonegap 3.0.0-0.14.0
>Reporter: Oliver Michalak
>Assignee: Shazron Abdullah
>
> In config.xml, we can define "webviewbounce" to be true or false.
> "phonegap local build ios" will create two entries in the 
> platform/ios/www/config.xml file in that blongs to webview bouncing:
> "webviewbounce" AND "uiwebviewbounce" - the later is probably wrong and will 
> not be filled with the value from the original webviewbounce value
> The cordovalLib on iOS parses the "uiwebviewbounce" only.
> As a result, the general "webviewbounce" will completely be ignored, after 
> each compile, you have to manually fix the "uiwebviewbounce" value.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (CB-4998) iOS Bridge sometimes stops working when debugger is attached.

2013-10-04 Thread Andrew Grieve (JIRA)

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

Andrew Grieve updated CB-4998:
--

Attachment: Screen Shot 2013-10-04 at 1.50.54 PM.png

> iOS Bridge sometimes stops working when debugger is attached.
> -
>
> Key: CB-4998
> URL: https://issues.apache.org/jira/browse/CB-4998
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Andrew Grieve
>Assignee: Andrew Grieve
>Priority: Minor
> Attachments: Screen Shot 2013-10-04 at 1.50.54 PM.png
>
>
> This is happening to me on iOS 7 simulator only when Safari's remote 
> inspector is connected.
> But - the symptoms are scary. Traced it through and what's happening is that 
> calls to stringByEvaluatingJavaScriptFromString stop being performed at all. 
> The code doesn't run and the return value is "". Retrying after a timeout 
> doesn't help. Seems it's hosed from this point forward.
> May be related to JS doing GC (screenshot attached).
> At this point, it's just something to keep an eye on I think.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (CB-4998) iOS Bridge sometimes stops working when debugger is attached.

2013-10-04 Thread Andrew Grieve (JIRA)
Andrew Grieve created CB-4998:
-

 Summary: iOS Bridge sometimes stops working when debugger is 
attached.
 Key: CB-4998
 URL: https://issues.apache.org/jira/browse/CB-4998
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Andrew Grieve
Assignee: Andrew Grieve
Priority: Minor
 Attachments: Screen Shot 2013-10-04 at 1.50.54 PM.png

This is happening to me on iOS 7 simulator only when Safari's remote inspector 
is connected.

But - the symptoms are scary. Traced it through and what's happening is that 
calls to stringByEvaluatingJavaScriptFromString stop being performed at all. 
The code doesn't run and the return value is "". Retrying after a timeout 
doesn't help. Seems it's hosed from this point forward.

May be related to JS doing GC (screenshot attached).

At this point, it's just something to keep an eye on I think.




--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-3534) Multiple CDVViewControllers - deviceready not fired and cordova.exec events queued up till backgrounding

2013-10-04 Thread Andrew Grieve (JIRA)

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

Andrew Grieve commented on CB-3534:
---

Just tried this with Cordova 3.1 (downloaded the zip, swapped out the 
cordova.js file as well as the CordovaLib directory with the 3.1 versions), and 
both alerts fire. Confirmed that they didn't fire with the 2.7 versions. Maybe 
this is already fixed?

> Multiple CDVViewControllers - deviceready not fired and cordova.exec events 
> queued up till backgrounding
> 
>
> Key: CB-3534
> URL: https://issues.apache.org/jira/browse/CB-3534
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: App Hello World, CordovaJS, iOS
>Affects Versions: 2.3.0, 2.7.0
> Environment: Reproducible on iPhone/iPad 6.1 Simulator and Device.
>Reporter: Mike Kwan
>Assignee: Shazron Abdullah
>Priority: Critical
> Fix For: 3.2.0
>
> Attachments: CordovaBug.zip, Screen Shot 2013-05-29 at 13.55.42.png, 
> Screen Shot 2013-05-29 at 14.31.44.png
>
>
> Minimal example reproducing the problem is attached and set up as follows:
>  # Custom container view controller split into two halves each containing a 
> _CDVViewController_
>  # Top half loads and after a delay (3000ms) fires a _NSNotification_
>  # In response to the _NSNotification_ the top half loads a green page and 
> the bottom half loads a red page
> Both red pages and green pages have an event listener for *deviceready*:
> {code}
> function onDeviceReady() {
> alert('deviceready from X'); // colour here
> cordova.exec(null, null, 'Echo', 'echo', ['hello']);
> };
> {code}
> {panel:title=Observed 
> Behaviour|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1|bgColor=#CE}
>  - _deviceready_ is fired only for the red page (bottom)
>  - The _cordova.exec_ succeeds for the red page (bottom)
>  - _deviceready_ is not fired for the green page (top)
> {panel}
> {panel:title=Expected 
> Behaviour|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1|bgColor=#CE}
> _deviceready_ should be fired for both the green and red page simultaneously 
> and the _cordova.exec_ events should go through immediately.
> {panel}
> {panel:title=Extra 
> Details|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1|bgColor=#CE}
> This bug reproduces the first time the app is launched (reset the simulator 
> to reproduce). On subsequent launches the app behaves as expected.
> The _deviceready_ can be triggered by certain events for the top page:
>  - Pulling down the notification bar
>  - Backgrounding
> If _deviceready_ is triggered by pulling down the notification bar, the 
> _cordova.exec_ is still not fired for the green page. The _cordova.exec_ 
> message is queued up and finally does go through when the app is backgrounded.
> {panel}
> This bug is remarkably similar to the following:
> https://issues.apache.org/jira/browse/CB-2094
> Perhaps it is an edge case which was overlooked? This bug reproduces on 2.3.0 
> and 2.7.0 - I have not tried other versions yet.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (CB-4996) Run Android Emulator gives No such file or directory error

2013-10-04 Thread Andrew Grieve (JIRA)

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

Andrew Grieve updated CB-4996:
--

Assignee: Braden Shepherdson

> Run Android Emulator gives No such file or directory error
> --
>
> Key: CB-4996
> URL: https://issues.apache.org/jira/browse/CB-4996
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, OSX
>Affects Versions: 3.0.0
>Reporter: Vincentdevreede
>Assignee: Braden Shepherdson
>Priority: Minor
>  Labels: android, emulator, mac, partition, run_on_emulator, 
> volumes
>
> Everything is correctly set up. But when i run "phonegap run android", and it 
> is trying to install app on emulator its going to error.
> [error] An error occurred while emulating/deploying the android 
> project./Volumes/Vincent de 
> Vreede/PhoneGap/Test/platforms/android/cordova/run: line 69: 
> /Volumes/Vincent: No such file or directory
> /Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
> 32: /Volumes/Vincent: No such file or directory
> /Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
> 36: /Volumes/Vincent: No such file or directory
> No devices/emulators started nor images available to start. How are we 
> supposed to do this, then?
> The problem is that he dont understand that /Volumes/Vincent de Vreede/ is my 
> directory and not /Volumes/Vincent/, soo he cant find the files. 
> I have changed my volume name to Vincentdevreede, and now its working. So the 
> run_on_emulator function has a bug.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4997) Error: An error occured during creation of android sub-project.

2013-10-04 Thread Adonis K. (JIRA)

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

Adonis K. commented on CB-4997:
---

Here are the results of `cordova platform add android -d`

http://pastebin.com/dh44M5ED

> Error: An error occured during creation of android sub-project.
> ---
>
> Key: CB-4997
> URL: https://issues.apache.org/jira/browse/CB-4997
> Project: Apache Cordova
>  Issue Type: Bug
> Environment: Windows 8.1 x64
> cordova cli 3.1.0-0.1.0
> PowerShell 3
>Reporter: Adonis K.
>Priority: Minor
>
> Running these commands from PowerShell:
> cd ~/
> cordova create test com.varemenos.test "test"
> cd test
> cordova platform add android
> result in the error belowc:
> [Error: An error occured during creation of android sub-project.]
> I already tried removing .cordova, also updating android and then adding it 
> to the PATH



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4997) Error: An error occured during creation of android sub-project.

2013-10-04 Thread Mike Billau (JIRA)

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

Mike Billau commented on CB-4997:
-

Can you please run `cordova platform add android -d` to get some more debug 
information? 

> Error: An error occured during creation of android sub-project.
> ---
>
> Key: CB-4997
> URL: https://issues.apache.org/jira/browse/CB-4997
> Project: Apache Cordova
>  Issue Type: Bug
> Environment: Windows 8.1 x64
> cordova cli 3.1.0-0.1.0
> PowerShell 3
>Reporter: Adonis K.
>Priority: Minor
>
> Running these commands from PowerShell:
> cd ~/
> cordova create test com.varemenos.test "test"
> cd test
> cordova platform add android
> result in the error belowc:
> [Error: An error occured during creation of android sub-project.]
> I already tried removing .cordova, also updating android and then adding it 
> to the PATH



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (CB-4997) Error: An error occured during creation of android sub-project.

2013-10-04 Thread Adonis K. (JIRA)
Adonis K. created CB-4997:
-

 Summary: Error: An error occured during creation of android 
sub-project.
 Key: CB-4997
 URL: https://issues.apache.org/jira/browse/CB-4997
 Project: Apache Cordova
  Issue Type: Bug
 Environment: Windows 8.1 x64
cordova cli 3.1.0-0.1.0
PowerShell 3
Reporter: Adonis K.
Priority: Minor


Running these commands from PowerShell:

cd ~/
cordova create test com.varemenos.test "test"
cd test
cordova platform add android
result in the error belowc:

[Error: An error occured during creation of android sub-project.]


I already tried removing .cordova, also updating android and then adding it to 
the PATH



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-3827) Modify content structure; reflect on home page

2013-10-04 Thread Mike Sierra (JIRA)

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

Mike Sierra commented on CB-3827:
-

split "Overview" & "Platform Support" table. Too many links to the latter, 
important info, and it should be available at a glance.

> Modify content structure; reflect on home page
> --
>
> Key: CB-3827
> URL: https://issues.apache.org/jira/browse/CB-3827
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Docs
>Reporter: Mike Sierra
>Assignee: Mike Sierra
>
> Restructure as follows:
> 1 Guides
>   1.1 Overview
>   1.1a Platform Support
>   1.2 The Command-line Interface
>   1.3 Platform Guides
> 1.3.1 FOO Platform Guide
> 1.3.2 FOO Configuration
> 1.3.3 FOO Plugins
> 1.3.4 FOO Webviews
> 1.3.5 FOO Command-line Tools
> 1.3.6 Upgrading FOO
>   1.4 Application Development Guide
> 1.4.1 Modifying Preferences
> 1.4.2 Basic Interaction
> 1.4.3 Device Sensors
> 1.4.4 Data Access
> 1.4.5 Network and Storage
> 1.4.6 Globalization
> 1.4.7 Domain Whitelisting
> 1.4.8 Privacy Guidelines
>   1.5 Hybrid Application Guide
> 1.5.1 Opening a Browser Window
> 1.5.2 Embedding a WebView [references various "FOO WebViews"]
> 1.5.3 Adding a Plug-in [references various "FOO Plugins"]
>   1.6 Distributing Applications
> 2 Reference
>   2.1 API Reference
> 2.1.x [each API...]
>   2.2 Configuration Reference
> 2.2.1 Shared Configuration Settings
> 2.2.2 Icons and Splash Screens
> 2.2.3 [reference various FOO configurations]
>       2.3 Plugin Reference
> 2.3.1 Plugin Specification
> 2.3.2 Using Plugman to Manage Plugins
> On home page:
> * strip out "Guide"/"Reference" levels
> * #.# should be formatted as top-level  heads
> * #.#.# should be formatted as  subheads
> * Under "Platform Tools," only "FOO Platform Guide" should appear on home page
> * Current skin doesn't link from top-level headings; modified version would
> Would prefer collapsible B-heads in navbar



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (CB-3827) Modify content structure; reflect on home page

2013-10-04 Thread Mike Sierra (JIRA)

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

Mike Sierra updated CB-3827:


Description: 
Restructure as follows:

1 Guides
  1.1 Overview
  1.1a Platform Support
  1.2 The Command-line Interface
  1.3 Platform Guides
1.3.1 FOO Platform Guide
1.3.2 FOO Configuration
1.3.3 FOO Plugins
1.3.4 FOO Webviews
1.3.5 FOO Command-line Tools
1.3.6 Upgrading FOO
  1.4 Application Development Guide
1.4.1 Modifying Preferences
1.4.2 Basic Interaction
1.4.3 Device Sensors
1.4.4 Data Access
1.4.5 Network and Storage
1.4.6 Globalization
1.4.7 Domain Whitelisting
1.4.8 Privacy Guidelines
  1.5 Hybrid Application Guide
1.5.1 Opening a Browser Window
1.5.2 Embedding a WebView [references various "FOO WebViews"]
1.5.3 Adding a Plug-in [references various "FOO Plugins"]
  1.6 Distributing Applications
2 Reference
  2.1 API Reference
2.1.x [each API...]
  2.2 Configuration Reference
2.2.1 Shared Configuration Settings
2.2.2 Icons and Splash Screens
2.2.3 [reference various FOO configurations]
      2.3 Plugin Reference
2.3.1 Plugin Specification
2.3.2 Using Plugman to Manage Plugins

On home page:

* strip out "Guide"/"Reference" levels
* #.# should be formatted as top-level  heads
* #.#.# should be formatted as  subheads
* Under "Platform Tools," only "FOO Platform Guide" should appear on home page
* Current skin doesn't link from top-level headings; modified version would

Would prefer collapsible B-heads in navbar

  was:
Restructure as follows:

1 Guides
  1.1 Overview
  1.1 Platform Support
  1.2 The Command-line Interface
  1.3 Platform Guides
1.3.1 FOO Platform Guide
1.3.2 FOO Configuration
1.3.3 FOO Plugins
1.3.4 FOO Webviews
1.3.5 FOO Command-line Tools
1.3.6 Upgrading FOO
  1.4 Application Development Guide
1.4.1 Modifying Preferences
1.4.2 Basic Interaction
1.4.3 Device Sensors
1.4.4 Data Access
1.4.5 Network and Storage
1.4.6 Globalization
1.4.7 Domain Whitelisting
1.4.8 Privacy Guidelines
  1.5 Hybrid Application Guide
1.5.1 Opening a Browser Window
1.5.2 Embedding a WebView [references various "FOO WebViews"]
1.5.3 Adding a Plug-in [references various "FOO Plugins"]
  1.6 Distributing Applications
2 Reference
  2.1 API Reference
2.1.x [each API...]
  2.2 Configuration Reference
2.2.1 Shared Configuration Settings
2.2.2 Icons and Splash Screens
2.2.3 [reference various FOO configurations]
      2.3 Plugin Reference
2.3.1 Plugin Specification
2.3.2 Using Plugman to Manage Plugins

On home page:

* strip out "Guide"/"Reference" levels
* #.# should be formatted as top-level  heads
* #.#.# should be formatted as  subheads
* Under "Platform Tools," only "FOO Platform Guide" should appear on home page
* Current skin doesn't link from top-level headings; modified version would

Would prefer collapsible B-heads in navbar


> Modify content structure; reflect on home page
> --
>
> Key: CB-3827
> URL: https://issues.apache.org/jira/browse/CB-3827
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Docs
>Reporter: Mike Sierra
>Assignee: Mike Sierra
>
> Restructure as follows:
> 1 Guides
>   1.1 Overview
>   1.1a Platform Support
>   1.2 The Command-line Interface
>   1.3 Platform Guides
> 1.3.1 FOO Platform Guide
> 1.3.2 FOO Configuration
> 1.3.3 FOO Plugins
> 1.3.4 FOO Webviews
> 1.3.5 FOO Command-line Tools
> 1.3.6 Upgrading FOO
>   1.4 Application Development Guide
> 1.4.1 Modifying Preferences
> 1.4.2 Basic Interaction
> 1.4.3 Device Sensors
> 1.4.4 Data Access
> 1.4.5 Network and Storage
> 1.4.6 Globalization
> 1.4.7 Domain Whitelisting
> 1.4.8 Privacy Guidelines
>   1.5 Hybrid Application Guide
> 1.5.1 Opening a Browser Window
> 1.5.2 Embedding a WebView [references various "FOO WebViews"]
> 1.5.3 Adding a Plug-in [references various "FOO Plugins"]
>   1.6 Distributing Applications
> 2 Reference
>   2.1 API Reference
> 2.1.x [each API...]
>   2.2 Configuration Reference
> 2.2.1 Shared Configuration Settings
> 2.2.2 Icons and Splash Screens
> 2.2.3 [reference various FOO configurations]
>       2.3 Plugin Reference
> 2.3.1 Plugin Specification
> 2.3.2 Using Plugman to Manage Plugins
> On home page:
> * stri

[jira] [Updated] (CB-3827) Modify content structure; reflect on home page

2013-10-04 Thread Mike Sierra (JIRA)

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

Mike Sierra updated CB-3827:


Description: 
Restructure as follows:

1 Guides
  1.1 Overview
  1.1 Platform Support
  1.2 The Command-line Interface
  1.3 Platform Guides
1.3.1 FOO Platform Guide
1.3.2 FOO Configuration
1.3.3 FOO Plugins
1.3.4 FOO Webviews
1.3.5 FOO Command-line Tools
1.3.6 Upgrading FOO
  1.4 Application Development Guide
1.4.1 Modifying Preferences
1.4.2 Basic Interaction
1.4.3 Device Sensors
1.4.4 Data Access
1.4.5 Network and Storage
1.4.6 Globalization
1.4.7 Domain Whitelisting
1.4.8 Privacy Guidelines
  1.5 Hybrid Application Guide
1.5.1 Opening a Browser Window
1.5.2 Embedding a WebView [references various "FOO WebViews"]
1.5.3 Adding a Plug-in [references various "FOO Plugins"]
  1.6 Distributing Applications
2 Reference
  2.1 API Reference
2.1.x [each API...]
  2.2 Configuration Reference
2.2.1 Shared Configuration Settings
2.2.2 Icons and Splash Screens
2.2.3 [reference various FOO configurations]
      2.3 Plugin Reference
2.3.1 Plugin Specification
2.3.2 Using Plugman to Manage Plugins

On home page:

* strip out "Guide"/"Reference" levels
* #.# should be formatted as top-level  heads
* #.#.# should be formatted as  subheads
* Under "Platform Tools," only "FOO Platform Guide" should appear on home page
* Current skin doesn't link from top-level headings; modified version would

Would prefer collapsible B-heads in navbar

  was:
Restructure as follows:

1 Guides
  1.1 Overview
  1.2 The Command-line Interface
  1.3 Platform Guides
1.3.1 FOO Platform Guide
1.3.2 FOO Configuration
1.3.3 FOO Plugins
1.3.4 FOO Webviews
1.3.5 FOO Command-line Tools
1.3.6 Upgrading FOO
  1.4 Application Development Guide
1.4.1 Modifying Preferences
1.4.2 Basic Interaction
1.4.3 Device Sensors
1.4.4 Data Access
1.4.5 Network and Storage
1.4.6 Globalization
1.4.7 Domain Whitelisting
1.4.8 Privacy Guidelines
  1.5 Hybrid Application Guide
1.5.1 Opening a Browser Window
1.5.2 Embedding a WebView [references various "FOO WebViews"]
1.5.3 Adding a Plug-in [references various "FOO Plugins"]
  1.6 Distributing Applications
2 Reference
  2.1 API Reference
2.1.x [each API...]
  2.2 Configuration Reference
2.2.1 Shared Configuration Settings
2.2.2 Icons and Splash Screens
2.2.3 [reference various FOO configurations]
      2.3 Plugin Reference
2.3.1 Plugin Specification
2.3.2 Using Plugman to Manage Plugins

On home page:

* strip out "Guide"/"Reference" levels
* #.# should be formatted as top-level  heads
* #.#.# should be formatted as  subheads
* Under "Platform Tools," only "FOO Platform Guide" should appear on home page
* Current skin doesn't link from top-level headings; modified version would

Would prefer collapsible B-heads in navbar


> Modify content structure; reflect on home page
> --
>
> Key: CB-3827
> URL: https://issues.apache.org/jira/browse/CB-3827
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Docs
>Reporter: Mike Sierra
>Assignee: Mike Sierra
>
> Restructure as follows:
> 1 Guides
>   1.1 Overview
>   1.1 Platform Support
>   1.2 The Command-line Interface
>   1.3 Platform Guides
> 1.3.1 FOO Platform Guide
> 1.3.2 FOO Configuration
> 1.3.3 FOO Plugins
> 1.3.4 FOO Webviews
> 1.3.5 FOO Command-line Tools
> 1.3.6 Upgrading FOO
>   1.4 Application Development Guide
> 1.4.1 Modifying Preferences
> 1.4.2 Basic Interaction
> 1.4.3 Device Sensors
> 1.4.4 Data Access
> 1.4.5 Network and Storage
> 1.4.6 Globalization
> 1.4.7 Domain Whitelisting
> 1.4.8 Privacy Guidelines
>   1.5 Hybrid Application Guide
> 1.5.1 Opening a Browser Window
> 1.5.2 Embedding a WebView [references various "FOO WebViews"]
> 1.5.3 Adding a Plug-in [references various "FOO Plugins"]
>   1.6 Distributing Applications
> 2 Reference
>   2.1 API Reference
> 2.1.x [each API...]
>   2.2 Configuration Reference
> 2.2.1 Shared Configuration Settings
> 2.2.2 Icons and Splash Screens
> 2.2.3 [reference various FOO configurations]
>       2.3 Plugin Reference
> 2.3.1 Plugin Specification
> 2.3.2 Using Plugman to Manage Plugins
> On home page:
> * strip out "Guide"/"Reference" lev

[jira] [Updated] (CB-4996) Run Android Emulator gives No such file or directory error

2013-10-04 Thread Vincentdevreede (JIRA)

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

Vincentdevreede updated CB-4996:


Description: 
Everything is correctly set up. But when i run "phonegap run android", and it 
is trying to install app on emulator its going to error.



[error] An error occurred while emulating/deploying the android 
project./Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: 
line 69: /Volumes/Vincent: No such file or directory
/Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
32: /Volumes/Vincent: No such file or directory
/Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
36: /Volumes/Vincent: No such file or directory
No devices/emulators started nor images available to start. How are we supposed 
to do this, then?




The problem is that he dont understand that /Volumes/Vincent de Vreede/ is my 
directory and not /Volumes/Vincent/, soo he cant find the files. 
I have changed my volume name to Vincentdevreede, and now its working. So the 
run_on_emulator function has a bug.

  was:
Everything is correctly set up. But when i run "phonegap run android", and it 
is trying to install app on emulator its going to error.

[error] An error occurred while emulating/deploying the android 
project./Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: 
line 69: /Volumes/Vincent: No such file or directory
/Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
32: /Volumes/Vincent: No such file or directory
/Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
36: /Volumes/Vincent: No such file or directory
No devices/emulators started nor images available to start. How are we supposed 
to do this, then?


The problem is that he dont understand that /Volumes/Vincent de Vreede/ is my 
directory and not /Volumes/Vincent/, soo he cant find the files. 
I have changed my volume name to Vincentdevreede, and now its working. So the 
run_on_emulator function has a bug.


> Run Android Emulator gives No such file or directory error
> --
>
> Key: CB-4996
> URL: https://issues.apache.org/jira/browse/CB-4996
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, OSX
>Affects Versions: 3.0.0
>Reporter: Vincentdevreede
>Priority: Minor
>  Labels: android, emulator, mac, partition, run_on_emulator, 
> volumes
>
> Everything is correctly set up. But when i run "phonegap run android", and it 
> is trying to install app on emulator its going to error.
> [error] An error occurred while emulating/deploying the android 
> project./Volumes/Vincent de 
> Vreede/PhoneGap/Test/platforms/android/cordova/run: line 69: 
> /Volumes/Vincent: No such file or directory
> /Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
> 32: /Volumes/Vincent: No such file or directory
> /Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
> 36: /Volumes/Vincent: No such file or directory
> No devices/emulators started nor images available to start. How are we 
> supposed to do this, then?
> The problem is that he dont understand that /Volumes/Vincent de Vreede/ is my 
> directory and not /Volumes/Vincent/, soo he cant find the files. 
> I have changed my volume name to Vincentdevreede, and now its working. So the 
> run_on_emulator function has a bug.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (CB-4996) Run Android Emulator gives No such file or directory error

2013-10-04 Thread Vincentdevreede (JIRA)

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

Vincentdevreede updated CB-4996:


Priority: Minor  (was: Critical)

> Run Android Emulator gives No such file or directory error
> --
>
> Key: CB-4996
> URL: https://issues.apache.org/jira/browse/CB-4996
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, OSX
>Affects Versions: 3.0.0
>Reporter: Vincentdevreede
>Priority: Minor
>  Labels: android, emulator, mac, partition, run_on_emulator, 
> volumes
>
> Everything is correctly set up. But when i run "phonegap run android", and it 
> is trying to install app on emulator its going to error.
> [error] An error occurred while emulating/deploying the android 
> project./Volumes/Vincent de 
> Vreede/PhoneGap/Test/platforms/android/cordova/run: line 69: 
> /Volumes/Vincent: No such file or directory
> /Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
> 32: /Volumes/Vincent: No such file or directory
> /Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
> 36: /Volumes/Vincent: No such file or directory
> No devices/emulators started nor images available to start. How are we 
> supposed to do this, then?
> The problem is that he dont understand that /Volumes/Vincent de Vreede/ is my 
> directory and not /Volumes/Vincent/, soo he cant find the files. 
> I have changed my volume name to Vincentdevreede, and now its working. So the 
> run_on_emulator function has a bug.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Created] (CB-4996) Run Android Emulator gives No such file or directory error

2013-10-04 Thread Vincentdevreede (JIRA)
Vincentdevreede created CB-4996:
---

 Summary: Run Android Emulator gives No such file or directory error
 Key: CB-4996
 URL: https://issues.apache.org/jira/browse/CB-4996
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android, OSX
Affects Versions: 3.0.0
Reporter: Vincentdevreede
Priority: Critical


Everything is correctly set up. But when i run "phonegap run android", and it 
is trying to install app on emulator its going to error.

[error] An error occurred while emulating/deploying the android 
project./Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: 
line 69: /Volumes/Vincent: No such file or directory
/Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
32: /Volumes/Vincent: No such file or directory
/Volumes/Vincent de Vreede/PhoneGap/Test/platforms/android/cordova/run: line 
36: /Volumes/Vincent: No such file or directory
No devices/emulators started nor images available to start. How are we supposed 
to do this, then?


The problem is that he dont understand that /Volumes/Vincent de Vreede/ is my 
directory and not /Volumes/Vincent/, soo he cant find the files. 
I have changed my volume name to Vincentdevreede, and now its working. So the 
run_on_emulator function has a bug.



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Commented] (CB-4991) Build Failure with notification plugins added

2013-10-04 Thread Vladimir Riha (JIRA)

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

Vladimir Riha commented on CB-4991:
---

Please check issue https://issues.apache.org/jira/browse/CB-4953 , I had the 
same problem

> Build Failure with notification plugins added
> -
>
> Key: CB-4991
> URL: https://issues.apache.org/jira/browse/CB-4991
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Dialogs, Plugin Vibration
>Affects Versions: 3.1.0
> Environment: iOS, OSX, Cordova 3.1.0, iOS 7
>Reporter: Mike Hartington
>Priority: Critical
>  Labels: cordova, ios,, phonegap, plugin
> Fix For: 3.1.0
>
>
> Build fails when trying to compile an app with dialogs and vibration plugins 
> installed. Errors that come up are as follow
> Undefined symbols for architecture armv7s:
>   "_AudioServicesRemoveSystemSoundCompletion", referenced from:
>   _soundCompletionCallback in CDVNotification.o
>   "_AudioServicesAddSystemSoundCompletion", referenced from:
>   _playBeep in CDVNotification.o
>   "_AudioServicesDisposeSystemSoundID", referenced from:
>   _soundCompletionCallback in CDVNotification.o
>   "_AudioServicesCreateSystemSoundID", referenced from:
>   _playBeep in CDVNotification.o
>   "_AudioServicesPlaySystemSound", referenced from:
>   -[CDVVibration vibrate:] in CDVVibration.o
>   _playBeep in CDVNotification.o
> ld: symbol(s) not found for architecture armv7s
> clang: error: linker command failed with exit code 1 (use -v to see 
> invocation)
> error: unable to open executable '/path/to/my/app.app/app



--
This message was sent by Atlassian JIRA
(v6.1#6144)