[jira] [Created] (CB-9717) UnauthorizedAccessException when cordova run windows

2015-09-28 Thread Ryan Edge (JIRA)
Ryan Edge created CB-9717:
-

 Summary: UnauthorizedAccessException when cordova run windows
 Key: CB-9717
 URL: https://issues.apache.org/jira/browse/CB-9717
 Project: Apache Cordova
  Issue Type: Bug
  Components: CLI
Affects Versions: 5.3.2
 Environment: Windows 10
Reporter: Ryan Edge


When attempting to run cordova, I get an error installing the 
*CordovaApp.Windows10_0.0.1.0_anycpu_debug.appx* file. This does not happen in 
Visual Studio 2015.

I have verified that my permissions for that file are the same regardless of 
whether I'm using Visual Studio or the CLI, which leads me to believe VS2015 is 
doing some magic under the covers.

The full error:
{code}
Get-AuthenticodeSignature : Access to the path 
'C:\Work\sandbox\cordova\hello\platforms\windows\AppPackages\CordovaApp.
Windows10_0.0.1.0_anycpu_debug_Test\CordovaApp.Windows10_0.0.1.0_anycpu_debug.appx'
 is denied.
At 
C:\Work\sandbox\cordova\hello\platforms\windows\AppPackages\CordovaApp.Windows10_0.0.1.0_anycpu_debug_Test\Add-AppDe
vPackage.ps1:449 char:25
+ ...   $PackageSignature = Get-AuthenticodeSignature $DeveloperPackagePath
+   ~~~
+ CategoryInfo  : NotSpecified: (:) [Get-AuthenticodeSignature], 
UnauthorizedAccessException
+ FullyQualifiedErrorId : 
System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.GetAuthenticodeSignatur
   eCommand
{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] [Created] (CB-9716) cordova-plugin-geolocation clearWatch seems not to stop GPS tracking

2015-09-28 Thread Christoph Wanja (JIRA)
Christoph Wanja created CB-9716:
---

 Summary: cordova-plugin-geolocation clearWatch seems not to stop 
GPS tracking
 Key: CB-9716
 URL: https://issues.apache.org/jira/browse/CB-9716
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Geolocation
Affects Versions: 5.1.1
 Environment: Android 4.4.4
Reporter: Christoph Wanja
Priority: Minor


Android 4.4.4, GPS enabled

When i start checking geolocation with navigator.geolocation.watchPosition(), 
and want to stop it, clearWatch stops delivering geolocation information but 
the GPS symbol doesn't disappear.
After closing the app, GPS symbol disappears.

Correct behaviour? What about battery lifetime? Is it just the symbol in the 
status bar or is GPS enabled and delivers new choords?



--
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-9354) Incorrect array merging in *-Info.plist

2015-09-28 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9354:


Github user gregavola commented on the pull request:

https://github.com/apache/cordova-lib/pull/256#issuecomment-143828977
  
Sorry to comment here - but how I can update my version of Cordova-Lib to 
support this change?


> Incorrect array merging in *-Info.plist
> ---
>
> Key: CB-9354
> URL: https://issues.apache.org/jira/browse/CB-9354
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI, CordovaLib
>Affects Versions: 5.1.1
> Environment: Mac OS X Yosemity
>Reporter: Sviatoslav Grebenchucov
>
> After installing 
> [phonegap-facebook-plugin|https://github.com/Wizcorp/phonegap-facebook-plugin.git]
>  each consequent run of 'cordova prepare' results in creating a duplicate of 
> the dictionary containing Facebook custom url scheme.
> After plugin installation App-Info.plist looks like:
> {code:xml}
> CFBundleURLTypes
> 
>   
> CFBundleURLSchemes
> 
>   fb123456789
> 
>   
> 
> {code}
> After 'cordova prepare':
> {code:xml}
> CFBundleURLTypes
> 
>   
> CFBundleURLSchemes
> 
>   fb123456789
> 
>   
>   
> CFBundleURLSchemes
> 
>   fb123456789
> 
>   
> 
> {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-9519) Inappropriate destruction time of engine in CordovaWebViewImpl

2015-09-28 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9519:


Github user DILEEP-YADAV commented on the pull request:

https://github.com/apache/cordova-android/pull/208#issuecomment-143840411
  
http://www.plugbunch.com/


> Inappropriate destruction time of engine in CordovaWebViewImpl
> --
>
> Key: CB-9519
> URL: https://issues.apache.org/jira/browse/CB-9519
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, CordovaLib
>Reporter: Dong Hanlin
>
> In {{CordovaWebViewImpl.java}}, one of the TODO comments in {{public void 
> handleDestroy()}} method points out that the engine should not destroy 
> webview until after about:blank is done loading. Actually, the engine has 
> indeed been destroyed before about:blank is completely loaded, which causes 
> some problems.
> I think moving a line of code may work:
> {quote}
> engine.destroy();
> {quote}
> This code can be moved into the last {{if}} block in {{public void 
> onPageFinishedLoading(String url)}}, like this:
> {code}
> // Shutdown if blank loaded
> if (url.equals("about:blank")) {
> engine.destroy();
> pluginManager.postMessage("exit", null);
> }
> {code}
> Since before destroying the engine, we have set the URL to be about:blank, so 
> destroying it when about:blank is completed loaded can work.



--
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-9616) Plugins need support for Android M run-time permissions

2015-09-28 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9616:


Github user DILEEP-YADAV commented on the pull request:

https://github.com/apache/cordova-android/pull/222#issuecomment-143840476
  
http://www.plugbunch.com/


> Plugins need support for Android M run-time permissions 
> 
>
> Key: CB-9616
> URL: https://issues.apache.org/jira/browse/CB-9616
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android
>Affects Versions: 4.1.1
>Reporter: Olivier Goguel
>
> To implement the new Android M run-time permission support, an application 
> activity needs to call requestPermission()   and get the user result by 
> overriding onRequestPermissionsResult()
> Unfortunately, if a plugin can call the requestPermission() on its Cordova 
> Activity, it has no way to be notified when the onRequestPermissionResult is 
> being received
> Similar to the onPause or onResult implementation, the Cordova Activity 
> should pass this event to to the pluginManager/ (through the 
> CordovaWebViewImpl) in order to let developers override 
> onRequestPermissionResult() in their plugin code if need be



--
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-9716) cordova-plugin-geolocation clearWatch seems not to stop GPS tracking

2015-09-28 Thread Christoph Wanja (JIRA)

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

Christoph Wanja updated CB-9716:

Description: 
Android 4.4.4, GPS enabled

When i start checking geolocation with navigator.geolocation.watchPosition(), 
and want to stop it, clearWatch stops delivering geolocation information but 
the GPS symbol doesn't disappear.
After closing the app, GPS symbol disappears.

Correct behaviour? What about battery lifetime? Is it just the symbol in the 
status bar or is GPS still activated and delivers new choords?

ps: cordova.exec(null, null, "Geolocation", "stopLocation", []) doesn't work 
either

  was:
Android 4.4.4, GPS enabled

When i start checking geolocation with navigator.geolocation.watchPosition(), 
and want to stop it, clearWatch stops delivering geolocation information but 
the GPS symbol doesn't disappear.
After closing the app, GPS symbol disappears.

Correct behaviour? What about battery lifetime? Is it just the symbol in the 
status bar or is GPS still activated and delivers new choords?


> cordova-plugin-geolocation clearWatch seems not to stop GPS tracking
> 
>
> Key: CB-9716
> URL: https://issues.apache.org/jira/browse/CB-9716
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Geolocation
>Affects Versions: 5.1.1
> Environment: Android 4.4.4
>Reporter: Christoph Wanja
>Priority: Minor
>
> Android 4.4.4, GPS enabled
> When i start checking geolocation with navigator.geolocation.watchPosition(), 
> and want to stop it, clearWatch stops delivering geolocation information but 
> the GPS symbol doesn't disappear.
> After closing the app, GPS symbol disappears.
> Correct behaviour? What about battery lifetime? Is it just the symbol in the 
> status bar or is GPS still activated and delivers new choords?
> ps: cordova.exec(null, null, "Geolocation", "stopLocation", []) doesn't work 
> 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] [Updated] (CB-9716) cordova-plugin-geolocation clearWatch seems not to stop GPS tracking

2015-09-28 Thread Christoph Wanja (JIRA)

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

Christoph Wanja updated CB-9716:

Description: 
Android 4.4.4, GPS enabled

When i start checking geolocation with navigator.geolocation.watchPosition(), 
and want to stop it, clearWatch stops delivering geolocation information but 
the GPS symbol doesn't disappear.
After closing the app, GPS symbol disappears.

Correct behaviour? What about battery lifetime? Is it just the symbol in the 
status bar or is GPS still activated and delivers new choords?

  was:
Android 4.4.4, GPS enabled

When i start checking geolocation with navigator.geolocation.watchPosition(), 
and want to stop it, clearWatch stops delivering geolocation information but 
the GPS symbol doesn't disappear.
After closing the app, GPS symbol disappears.

Correct behaviour? What about battery lifetime? Is it just the symbol in the 
status bar or is GPS enabled and delivers new choords?


> cordova-plugin-geolocation clearWatch seems not to stop GPS tracking
> 
>
> Key: CB-9716
> URL: https://issues.apache.org/jira/browse/CB-9716
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Geolocation
>Affects Versions: 5.1.1
> Environment: Android 4.4.4
>Reporter: Christoph Wanja
>Priority: Minor
>
> Android 4.4.4, GPS enabled
> When i start checking geolocation with navigator.geolocation.watchPosition(), 
> and want to stop it, clearWatch stops delivering geolocation information but 
> the GPS symbol doesn't disappear.
> After closing the app, GPS symbol disappears.
> Correct behaviour? What about battery lifetime? Is it just the symbol in the 
> status bar or is GPS still activated and delivers new choords?



--
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-9297) Cordova CLI fails silently with iojs

2015-09-28 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-9297:
--

Can this issue be resolved? Or does this need a new node-xcode released?

> Cordova CLI fails silently with iojs
> 
>
> Key: CB-9297
> URL: https://issues.apache.org/jira/browse/CB-9297
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.1.2
> Environment: Cordova CLI: 5.1.1 (this isn't in your version list 
> above)
> ios-deploy version: 1.7.0 
> ios-sim version: 4.1.1 
> OS: Mac OS X Yosemite
> Xcode version: Xcode 6.4 Build version 6E35b 
> node (iojs): 1.8.1
>Reporter: Robert Churchill
>Assignee: Vladimir Kotikov
>Priority: Critical
>  Labels: cordova-ios-4.0.x
>
> Running most build tasks (emulate, run, build) for ios when node is replaced 
> by iojs results in the build failing silently. Example:
> $ cordova build ios
> $
> $ cordova build ios --verbose
> Generating config.xml from defaults for platform "ios"
> Calling plugman.prepare for platform "ios"
> Preparing ios project
> ...
> [seems to finish prepare (but without executing hooks) then exits]
> ...
> $
> Not sure if you plan to support iojs, but at least this report might help 
> someone googling. Unfamiliar with the Apache JIRA system so apologies if this 
> report is in the wrong place etc.



--
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-9712) CLI 5.3 breaks with node 3.3.3

2015-09-28 Thread Matt Steele (JIRA)

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

Matt Steele commented on CB-9712:
-

I'm seeing this as well (node 0.10.26, npm 3.3.3). The issue is npm3's flat 
directory structure - you could also see this if you ran {{npm dedupe}} with 
npm2.

The offending line (which assumes a nested {{node_modules}} is here: 
https://github.com/apache/cordova-lib/blob/c3485e21412bbc73711cc6bd32a93a7ee2a1fe1f/cordova-lib/src/cordova/create.js#L116

> CLI 5.3 breaks with node 3.3.3
> --
>
> Key: CB-9712
> URL: https://issues.apache.org/jira/browse/CB-9712
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.3.2
> Environment: OSX, node 0.12.7, node 4.1, npm 3.3.3
>Reporter: Mike Hartington
>
> The CLI release with node 4x breaks with npm 3.
> This is due to the way npm3 flattens dependencies.
> {code}
> Creating a new cordova project.
> Could not find directory: 
> /usr/local/lib/node_modules/cordova/node_modules/cordova-lib/node_modules/cordova-app-hello-world
> {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] [Created] (CB-9718) cordova run doesn't allow running multiple device targets of the same platform at once

2015-09-28 Thread Omar Mefire (JIRA)
Omar Mefire created CB-9718:
---

 Summary: cordova run doesn't allow running multiple device targets 
of the same platform at once
 Key: CB-9718
 URL: https://issues.apache.org/jira/browse/CB-9718
 Project: Apache Cordova
  Issue Type: Bug
Reporter: Omar Mefire


- create a cordova project on a Linux/MacOSX/Windows machine
- connect two android devices (e.g: Nexus 5 and Nexus 6) to your dev machine
- grab the devices hash: `adb devices`
- execute this command: cordova run android --target=ZX... --target=015...

Expected behavior:
The cordova app gets executed on all connected devices

Observed behavior:
the target that was specified last gets the app executed on it. 
e.g: executing `cordova run android --target=ZX... --target=015...`, only the 
device corresponding to target 015... gets the app deployed to it.



--
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-9715) hash (#) Navigation problem in IOS 9

2015-09-28 Thread Kamal Rana (JIRA)
Kamal Rana created CB-9715:
--

 Summary: hash (#) Navigation problem in IOS 9
 Key: CB-9715
 URL: https://issues.apache.org/jira/browse/CB-9715
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaJS, iOS
Affects Versions: 3.9.0
 Environment: IOS 9, JQuery Mobile 1.4.5, Cordova 3.9.0
Reporter: Kamal Rana
Priority: Critical


We created Web apps with JQuery mobile and made apps using Cordova 3.9. The 
same App was working fine in IOS 8 but in IOS 9 all the navigations are not 
working like go back, navigate to some particular page, etc. All this kind of 
navigation request lead to home page instead of requested page.

Our web app is working fine in Safari on IOS 9 that is why we assume that this 
navigation problem occurs due to Cordova.

Please let me know when you are going to address this bug as quite number of 
applications are effected due to this upgrade.



--
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-9709) Focus left window => died

2015-09-28 Thread Benjamin de Dardel (JIRA)

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

Benjamin de Dardel updated CB-9709:
---
Description: 
Focus left window => died
=

Description
---

I use Cordova on Android, with crosswalk plugin.

When I cut some text at the end of a textarea with big content, using android 
native copy/cut/paste, application crashes.
I made a small project on [github](https://github.com/bdedardel/cordova-test), 
and also opened a crosswalk issue: 
[XWALK-4791](https://crosswalk-project.org/jira/browse/XWALK-4791)

But I think that there is a problem between android and cordova layers, when 
cordova looses focus (see logcat above).

Depends on all the tests I have made, I had also messages around:

- BufferQueue: 

```
09-26 12:42:19.981: I/BufferQueue(126): 
[com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity](this:0x442e3698,api:1)
 [queue] fps:1.07, dur:18778.35, max:18256.99, min:14.54
09-26 12:42:19.992: I/BufferQueue(126): 
[com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity](this:0x442e3698,api:1)
 [release] fps:1.07, dur:18777.84, max:18253.58, min:14.07
```

- MainActivity (server)' ~ Consumer closed input channel or an error occurred
- android A/libc(3797): Fatal signal 11 (SIGSEGV)

### Steps to reproduce

- run ./bin/build.sh
- install and open cordova-test-nok.apk on the android mobile phone
- goto line 1951/2000 and cut it, everything is ok
- close app and reopen it
- goto line 1952/2000 and cut it, application crashes

### Environment

- cordova 5.3.1

Tested on:

- LG G2, android 5.0.2

Debug
--

### Stack trace

Filtered on 'test':

```
09-26 13:25:08.258: D/InputTransport(970): channel '3f8e8940 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity 
(server)' : action=ACTION_DOWN, downTime=91949255682000, 
eventTime=91949255682000, pointerCount=1
09-26 13:25:10.426: D/InputTransport(970): channel '3f8e8940 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity 
(server)' : action=ACTION_UP, downTime=91949255682000, 
eventTime=91951427884000, pointerCount=1
09-26 13:26:00.091: D/WeatherService(1372): 2 : requestRefreshAppWidget, 
isUpdateStart : false
09-26 13:26:02.060: D/InputTransport(970): channel '3f8e8940 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity 
(server)' : action=ACTION_DOWN, downTime=92003054648000, 
eventTime=92003054648000, pointerCount=1
09-26 13:26:02.181: D/InputTransport(970): channel '3f8e8940 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity 
(server)' : action=ACTION_UP, downTime=92003054648000, 
eventTime=92003177478000, pointerCount=1
09-26 13:26:02.240: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.269: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.326: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.337: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.338: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.343: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.395: W/System.err(14558):at 
org.chromium.content.browser.input.AdapterInputConnection.updateState(AdapterInputConnection.java:186)
09-26 13:26:02.397: A/libc(14558): Fatal signal 6 (SIGABRT), code -6 in tid 
14558 (del.CordovaTest)
09-26 13:26:02.503: I/DEBUG(327): pid: 14558, tid: 14558, name: del.CordovaTest 
 >>> com.github.bdedardel.CordovaTest <<<
09-26 13:26:02.536: I/DEBUG(327): #05 pc 001f9705  
/data/app/com.github.bdedardel.CordovaTest-1/lib/arm/libxwalkcore.so
09-26 13:26:03.447: I/WindowState(970): WIN DEATH: Window{3f8e8940 u0 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity}
09-26 13:26:03.450: W/WindowManager(970): Force-removing child win 
Window{366ecfd2 u0 SurfaceView} from container Window{3f8e8940 u0 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity}
09-26 13:26:03.466: D/InputDispatcher(970): Focus left window: Window{3f8e8940 
u0 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity}
09-26 13:26:03.466: D/InputDispatcher(970): Window went away: Window{3f8e8940 
u0 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity}
09-26 13:26:03.555: I/ActivityManager(970): Process 
com.github.bdedardel.CordovaTest (pid 14558) has died
09-26 13:26:03.556: W/ActivityManager(970): Force removing 
ActivityRecord{2ae0b81a u0 com.github.bdedardel.CordovaTest/.MainActivity 
t3789}: app died, no saved state
```

Trace arround error:
```
09-26 13:49:56.436: I/[SystemUI]LGPowerUI(1354): onReceive = 

[jira] [Resolved] (CB-9705) Cordova - window.history.back() not working on HTML back button in iOS 9

2015-09-28 Thread veeraju (JIRA)

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

veeraju resolved CB-9705.
-
Resolution: Fixed

Using " history.go(0)" Instead of " window.history.back(); " Solved my issue
   

> Cordova - window.history.back() not working on HTML back button in iOS 9
> 
>
> Key: CB-9705
> URL: https://issues.apache.org/jira/browse/CB-9705
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI, iOS
>Affects Versions: 3.8.0
> Environment: XCODE 7.0, iOS 9 I am getting this issue. Where as prior 
> to iOS 9 versions like  iOS 8,iOS 7 and iOS 6 it is working perfectly.
>Reporter: veeraju
>  Labels: CordovaWebView, cordova, cordova-ios-4.0.x
> Fix For: 3.8.0
>
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> In my application I am using window.history.back to navigate back to previous 
> View
> Declaration of back button
>  
> 
>
> 
> Button action:
>  $("#verification_back_icon").on("click", function(e)
>  {
> if(checkDirtyVacation())
>  {
>  e.preventDefault();
>  if(backbtnAlt== false)
> {
>backbtnAlt =true; 
>confirm("All data will be lost. Do you want to continue?",
>function(r){
>   if(r){
>  //onBackKeyDown();
>  clearVacationvalues();
>  window.history.back();//this is not working in iOS 9
>  }else{
>}
>backbtnAlt =false;
> });
>  }   
>   }
>  else 
>  {
> e.preventDefault();
> if($(".vaction_location").hasClass("chkSelect"))
>{
>  $(".vaction_location").removeClass("chkSelect");
> $(".vaction_location").addClass("chkUnSelect");
>}
>window.history.back();
> }
>  }); 
>  This worked perfectly till iOS 8.4. In iOS 9 this navigation is not working.
> I am using Apache Cordova native platform version 3.8.0 .
> If anyone facing the similar problem please suggest me. 



--
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-9709) Focus left window => died

2015-09-28 Thread Benjamin de Dardel (JIRA)

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

Benjamin de Dardel updated CB-9709:
---
Description: 
Focus left window => died
=

Description
---

I use Cordova on Android, with crosswalk plugin.

When I cut some text at the end of a textarea with big content, using android 
native copy/cut/paste, application crashes.
I made a small project on [github](https://github.com/bdedardel/cordova-test), 
and also opened a crosswalk issue: 
[XWALK-4791](https://crosswalk-project.org/jira/browse/XWALK-4791)

But I think that there is a problem between android and cordova layers, when 
cordova looses focus (see logcat above).

Depends on all the tests I have made, I had also messages around:

- BufferQueue: 

```
09-26 12:42:19.981: I/BufferQueue(126): 
[com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity](this:0x442e3698,api:1)
 [queue] fps:1.07, dur:18778.35, max:18256.99, min:14.54
09-26 12:42:19.992: I/BufferQueue(126): 
[com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity](this:0x442e3698,api:1)
 [release] fps:1.07, dur:18777.84, max:18253.58, min:14.07
```

- MainActivity (server)' ~ Consumer closed input channel or an error occurred
- android A/libc(3797): Fatal signal 11 (SIGSEGV)

Steps to reproduce
---

- run ./bin/build.sh
- install and open cordova-test-nok.apk on the android mobile phone
- goto line 1951/2000 and cut it, everything is ok
- close app and reopen it
- goto line 1952/2000 and cut it, application crashes

Environment


- cordova 5.3.1

Tested on:

- LG G2, android 5.0.2

Stack trace
---

Filtered on 'test':

```
09-26 13:25:08.258: D/InputTransport(970): channel '3f8e8940 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity 
(server)' : action=ACTION_DOWN, downTime=91949255682000, 
eventTime=91949255682000, pointerCount=1
09-26 13:25:10.426: D/InputTransport(970): channel '3f8e8940 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity 
(server)' : action=ACTION_UP, downTime=91949255682000, 
eventTime=91951427884000, pointerCount=1
09-26 13:26:00.091: D/WeatherService(1372): 2 : requestRefreshAppWidget, 
isUpdateStart : false
09-26 13:26:02.060: D/InputTransport(970): channel '3f8e8940 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity 
(server)' : action=ACTION_DOWN, downTime=92003054648000, 
eventTime=92003054648000, pointerCount=1
09-26 13:26:02.181: D/InputTransport(970): channel '3f8e8940 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity 
(server)' : action=ACTION_UP, downTime=92003054648000, 
eventTime=92003177478000, pointerCount=1
09-26 13:26:02.240: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.269: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.326: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.337: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.338: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.343: D/Cliptray Service(1831): ignore packageName : 
com.github.bdedardel.CordovaTest
09-26 13:26:02.395: W/System.err(14558):at 
org.chromium.content.browser.input.AdapterInputConnection.updateState(AdapterInputConnection.java:186)
09-26 13:26:02.397: A/libc(14558): Fatal signal 6 (SIGABRT), code -6 in tid 
14558 (del.CordovaTest)
09-26 13:26:02.503: I/DEBUG(327): pid: 14558, tid: 14558, name: del.CordovaTest 
 >>> com.github.bdedardel.CordovaTest <<<
09-26 13:26:02.536: I/DEBUG(327): #05 pc 001f9705  
/data/app/com.github.bdedardel.CordovaTest-1/lib/arm/libxwalkcore.so
09-26 13:26:03.447: I/WindowState(970): WIN DEATH: Window{3f8e8940 u0 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity}
09-26 13:26:03.450: W/WindowManager(970): Force-removing child win 
Window{366ecfd2 u0 SurfaceView} from container Window{3f8e8940 u0 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity}
09-26 13:26:03.466: D/InputDispatcher(970): Focus left window: Window{3f8e8940 
u0 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity}
09-26 13:26:03.466: D/InputDispatcher(970): Window went away: Window{3f8e8940 
u0 
com.github.bdedardel.CordovaTest/com.github.bdedardel.CordovaTest.MainActivity}
09-26 13:26:03.555: I/ActivityManager(970): Process 
com.github.bdedardel.CordovaTest (pid 14558) has died
09-26 13:26:03.556: W/ActivityManager(970): Force removing 
ActivityRecord{2ae0b81a u0 com.github.bdedardel.CordovaTest/.MainActivity 
t3789}: app died, no saved state
```

Trace arround error:
```
09-26 13:49:56.436: 

[jira] [Updated] (CB-9689) Select dropdowns are not working in ios 9 iPad split view and slide over

2015-09-28 Thread Sravan (JIRA)

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

Sravan updated CB-9689:
---
Attachment: Screen Shot 2015-09-22 at 2.03.27 PM.png

> Select dropdowns are not working in ios 9 iPad split view and slide over
> 
>
> Key: CB-9689
> URL: https://issues.apache.org/jira/browse/CB-9689
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.8.0
>Reporter: Sravan
> Attachments: Screen Shot 2015-09-22 at 2.03.27 PM.png
>
>




--
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-9080) Cordova CLI run for Android versions 4.1.1 and lower throws error

2015-09-28 Thread ASF subversion and git services (JIRA)

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

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

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

CB-9080 Cordova CLI run for Android versions 4.1.1 and lower throws error


> Cordova CLI run for Android versions 4.1.1 and lower throws error
> -
>
> Key: CB-9080
> URL: https://issues.apache.org/jira/browse/CB-9080
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, CLI
>Affects Versions: 5.0.0
> Environment: Cordova CLI 5.0.0
> Cordova Lib 5.0.0 
> Mac Yosemite 10.10.2
> Android platform tools 22
> Android 4.1
>Reporter: Josh Bavari
>Assignee: Joe Bowser
>
> When running `cordova run android` and an Android v4.1 device connected, the 
> `adb` command fails.
> You can read more about the error on the Ionic CLI issues, as ionic calls 
> cordova: https://github.com/driftyco/ionic-cli/issues/441
> Looking at the source code, the `device.js` file will try to run this command:
> 'adb install -s ' + resolvedTarget.target + ' -r -d "' + apk_path + '"'
> As you can see, it passes the -d option, which works fine for most android 
> 4.2+ devices.
> However, when Android 4.1 is involved, this error occurs:
> ```
> BUILD SUCCESSFUL
> Total time: 2.551 secs
> Built the following apk(s):
> 
> /Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk
> Using apk: 
> /Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk
> Installing app on device...
> Running this command to install app to device: adb -s 192.168.56.102: 
> install -r -d 
> "/Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk"
> OUTPUT: Error: Unknown option: -d
> usage: pm list packages [-f] [-d] [-e] [-s] [-3] [-i] [-u] [FILTER]
>pm list permission-groups
>pm list permissions [-g] [-f] [-d] [-u] [GROUP]
>pm list instrumentation [-f] [TARGET-PACKAGE]
>pm list features
>pm list libraries
>pm path PACKAGE
>pm install [-l] [-r] [-t] [-i INSTALLER_PACKAGE_NAME] [-s] [-f]
>   [--algo  --key  --iv 
> ] PATH
>pm uninstall [-k] PACKAGE
>pm clear PACKAGE
>pm enable PACKAGE_OR_COMPONENT
>pm disable PACKAGE_OR_COMPONENT
>pm disable-user PACKAGE_OR_COMPONENT
>pm grant PACKAGE PERMISSION
>pm revoke PACKAGE PERMISSION
>pm set-install-location [0/auto] [1/internal] [2/external]
>pm get-install-location
>pm set-permission-enforced PERMISSION [true|false]
> ```
> Now when I run with an Android 4.4 device attached:
> ```
> Total time: 2.585 secs
> Built the following apk(s):
> 
> /Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk
> Using apk: 
> /Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk
> Installing app on device...
> Running this command to install app to device: adb -s 192.168.56.101: 
> install -r -d 
> "/Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk"
> OUTPUT:   pkg: /data/local/tmp/android-debug.apk
> Success
> Launching application...
> LAUNCH SUCCESS
> ```
> My guess here is that this is an issue with the `adb` tool.
> Can anyone else confirm this is an issue? The adb tool does not work with 
> `-d` on Android 4.1.



--
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-9080) Cordova CLI run for Android versions 4.1.1 and lower throws error

2015-09-28 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9080:


Github user asfgit closed the pull request at:

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


> Cordova CLI run for Android versions 4.1.1 and lower throws error
> -
>
> Key: CB-9080
> URL: https://issues.apache.org/jira/browse/CB-9080
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, CLI
>Affects Versions: 5.0.0
> Environment: Cordova CLI 5.0.0
> Cordova Lib 5.0.0 
> Mac Yosemite 10.10.2
> Android platform tools 22
> Android 4.1
>Reporter: Josh Bavari
>Assignee: Joe Bowser
>
> When running `cordova run android` and an Android v4.1 device connected, the 
> `adb` command fails.
> You can read more about the error on the Ionic CLI issues, as ionic calls 
> cordova: https://github.com/driftyco/ionic-cli/issues/441
> Looking at the source code, the `device.js` file will try to run this command:
> 'adb install -s ' + resolvedTarget.target + ' -r -d "' + apk_path + '"'
> As you can see, it passes the -d option, which works fine for most android 
> 4.2+ devices.
> However, when Android 4.1 is involved, this error occurs:
> ```
> BUILD SUCCESSFUL
> Total time: 2.551 secs
> Built the following apk(s):
> 
> /Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk
> Using apk: 
> /Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk
> Installing app on device...
> Running this command to install app to device: adb -s 192.168.56.102: 
> install -r -d 
> "/Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk"
> OUTPUT: Error: Unknown option: -d
> usage: pm list packages [-f] [-d] [-e] [-s] [-3] [-i] [-u] [FILTER]
>pm list permission-groups
>pm list permissions [-g] [-f] [-d] [-u] [GROUP]
>pm list instrumentation [-f] [TARGET-PACKAGE]
>pm list features
>pm list libraries
>pm path PACKAGE
>pm install [-l] [-r] [-t] [-i INSTALLER_PACKAGE_NAME] [-s] [-f]
>   [--algo  --key  --iv 
> ] PATH
>pm uninstall [-k] PACKAGE
>pm clear PACKAGE
>pm enable PACKAGE_OR_COMPONENT
>pm disable PACKAGE_OR_COMPONENT
>pm disable-user PACKAGE_OR_COMPONENT
>pm grant PACKAGE PERMISSION
>pm revoke PACKAGE PERMISSION
>pm set-install-location [0/auto] [1/internal] [2/external]
>pm get-install-location
>pm set-permission-enforced PERMISSION [true|false]
> ```
> Now when I run with an Android 4.4 device attached:
> ```
> Total time: 2.585 secs
> Built the following apk(s):
> 
> /Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk
> Using apk: 
> /Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk
> Installing app on device...
> Running this command to install app to device: adb -s 192.168.56.101: 
> install -r -d 
> "/Users/JoshBavari/Development/testing/s1/platforms/android/build/outputs/apk/android-debug.apk"
> OUTPUT:   pkg: /data/local/tmp/android-debug.apk
> Success
> Launching application...
> LAUNCH SUCCESS
> ```
> My guess here is that this is an issue with the `adb` tool.
> Can anyone else confirm this is an issue? The adb tool does not work with 
> `-d` on Android 4.1.



--
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-9698) Add rsync error handling in ios copy-www-build-step.js

2015-09-28 Thread ASF subversion and git services (JIRA)

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

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

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

CB-9698 Add rsync error handling in ios copy-www-build-step.js


> Add rsync error handling in ios copy-www-build-step.js
> --
>
> Key: CB-9698
> URL: https://issues.apache.org/jira/browse/CB-9698
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>
> rsync error were not handled as stated in CB-9693, which was leading to test 
> pass.



--
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-9698) Add rsync error handling in ios copy-www-build-step.js

2015-09-28 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9698:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-ios/pull/168


> Add rsync error handling in ios copy-www-build-step.js
> --
>
> Key: CB-9698
> URL: https://issues.apache.org/jira/browse/CB-9698
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Sergey Shakhnazarov
>Assignee: Sergey Shakhnazarov
>
> rsync error were not handled as stated in CB-9693, which was leading to test 
> pass.



--
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-9719) Xcode build error in framework with CordovaLib as a dependency

2015-09-28 Thread Edna Morales (JIRA)
Edna Morales created CB-9719:


 Summary: Xcode build error in framework with CordovaLib as a 
dependency
 Key: CB-9719
 URL: https://issues.apache.org/jira/browse/CB-9719
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Affects Versions: Master
Reporter: Edna Morales


We have a .framework that depends on CordovaLib and has an import statement in 
one of our header files:
#import 

We get an error when we build the application:
Include of non-modular header inside framework module 
'IBMMobileFirstPlatformFoundationHybrid.WLCordovaAppDelegate'

I'm not getting an error with any other import statements like:
#import 

If I change the project setting 'Enable Modules (C and Objective-C)' to No, the 
error goes 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-9719) Xcode build error in framework with CordovaLib as a dependency

2015-09-28 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-9719:
--

Cordova is not enabled as a module, and was originally only designed to be part 
of the default template (as a subproject).
There has been a Proof of Concept to enable this (among other things): 
https://github.com/shazron/CB-5921

Not sure how much work to add this in cordova-ios 4.0, but definitely 5.x

> Xcode build error in framework with CordovaLib as a dependency
> --
>
> Key: CB-9719
> URL: https://issues.apache.org/jira/browse/CB-9719
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: Master
>Reporter: Edna Morales
>
> We have a .framework that depends on CordovaLib and has an import statement 
> in one of our header files:
> #import 
> We get an error when we build the application:
> Include of non-modular header inside framework module 
> 'IBMMobileFirstPlatformFoundationHybrid.WLCordovaAppDelegate'
> I'm not getting an error with any other import statements like:
> #import 
> If I change the project setting 'Enable Modules (C and Objective-C)' to No, 
> the error goes 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-9711) Windows 10 Universal App don't show keyboard

2015-09-28 Thread William Calderwood (JIRA)

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

William Calderwood commented on CB-9711:


I thought it was just me. Well I can reproduce this using the cordova cli only 
when building for windows 10.

If I build using cordova cli 5.3.3 for windows 8.1 the soft keys will come up 
on an edit box,
If I change the build to build for windows 10 again using the cordova cli 5.3.3 
then the soft keys will NOT come up on an edit box.
If I build using Visual Studio for windows 10 ... well guess what the soft keys 
come up on an edit box.

So it would seem that the cordova cli is broken in this respect for a touch 
interface when building for Windows 10 and regressed from building windows 8.1 
apps.

 

> Windows 10 Universal App don't show keyboard
> 
>
> Key: CB-9711
> URL: https://issues.apache.org/jira/browse/CB-9711
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI, Windows
>Affects Versions: 5.1.1
> Environment: Windows 10 OS, Cordova 5.1.1, App generated with Cordova 
> CLI. Visual Studio 2015 Enterprise. Deployed into Dell Machine with unplugged 
> keyboard.
>Reporter: Boris Ordunez
>Priority: Blocker
>
> Application created with Cordova CLI using this command "cordova app build 
> windows". 
> Windows 10 Universal App deployed in a Dell Machine with unplugged keyboard. 
> Using a mouse everything works fine, but with unplugged keyboard in  tablet 
> mode:
> 1. Don't show keyboard when text input focused.
> 2. Gestures like, drag, swipe doesn't works.



--
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