[jira] [Created] (CB-10377) How to disable camera using phonegap\cordaova

2016-01-18 Thread RajeshwarReddy (JIRA)
RajeshwarReddy created CB-10377:
---

 Summary: How to disable camera using phonegap\cordaova
 Key: CB-10377
 URL: https://issues.apache.org/jira/browse/CB-10377
 Project: Apache Cordova
  Issue Type: Bug
  Components: CordovaLib
Reporter: RajeshwarReddy


I want to disable the camera option using phonegap application.

Is there any plugin by which i can do this



--
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-10375) Android 6.0 (Marshmallow) getCurrentAcceleration does not callback

2016-01-18 Thread Zeph Davies (JIRA)

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

Zeph Davies commented on CB-10375:
--

This may be due to the device marshmallow was tested on (LG Nexus 4), and not 
Marshmallow in general.

Can anyone running Marshmallow confirm if their accelerometer gets readings?

> Android 6.0 (Marshmallow) getCurrentAcceleration does not callback
> --
>
> Key: CB-10375
> URL: https://issues.apache.org/jira/browse/CB-10375
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Device Motion
>Reporter: Zeph Davies
>Priority: Critical
>
> Tested using an application running on Android Lollipop and Marshmallow.
> The Lollipop returns an accelerometer reading.
> The Marshmallow never returns anything (nether success or error callback is 
> called).



--
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-8976) platforms/android/build.gradle modifies android versionCode

2016-01-18 Thread Mike Murkovic (JIRA)

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

Mike Murkovic commented on CB-8976:
---

Re [~iclelland]:
I understand how that would be an issue, but that should be solved by 
developers' custom build hooks, and not by the default of Cordova's build 
process. This is creating a lot of confusion and problems with Cordova's 
Android build.

> platforms/android/build.gradle modifies android versionCode
> ---
>
> Key: CB-8976
> URL: https://issues.apache.org/jira/browse/CB-8976
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Android
>Reporter: zack dykes
>
> cordova 5.0.0
> platforms/android/build.gradle modifies android versionCode at ln 178
> as I understand it max size for versionCode is (2^31)-1 
> http://stackoverflow.com/a/24246191/126600
> in my config.xml: 
> {code}
> android-versionCode="1385039613"
> {code}
> when I run {{cordova build android}}, I get:
> {code}
> FAILURE: Build failed with an exception.
> * Where:
> Build file 
> '/Users/zackd/dev/code/cordova/cordova-ansr-fat-client/ondeviceresearch/platforms/android/build.gradle'
>  line: 178
> * What went wrong:
> A problem occurred evaluating root project 'android'.
> > For input string: "13850396130"
> {code}
> and build.gradle, ln 178
> {code}
> versionCode cdvVersionCode ?: Integer.parseInt("" + 
> privateHelpers.extractIntFromManifest("versionCode") + "0")
> {code}
> looks like this is appending "0" to my versionCode, producing 13850396130 
> which is larger than max size for android versionCode
> if I mod ln 178 as follows, build succeeds
> {code}
> versionCode cdvVersionCode ?: Integer.parseInt("" + 
> privateHelpers.extractIntFromManifest("versionCode"))
> {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-10375) Android 6.0 (Marshmallow) getCurrentAcceleration does not callback

2016-01-18 Thread Zeph Davies (JIRA)
Zeph Davies created CB-10375:


 Summary: Android 6.0 (Marshmallow) getCurrentAcceleration does not 
callback
 Key: CB-10375
 URL: https://issues.apache.org/jira/browse/CB-10375
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Device Motion
Reporter: Zeph Davies
Priority: Critical


Tested using an application running on Android Lollipop and Marshmallow.
The Lollipop returns an accelerometer reading.
The Marshmallow never returns anything (nether callback is called).



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

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



[jira] [Issue Comment Deleted] (CB-10157) Application uninstalls before installing, clearing localStorage and databases

2016-01-18 Thread Zeph Davies (JIRA)

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

Zeph Davies updated CB-10157:
-
Comment: was deleted

(was: The linked issue caused this bug.)

> Application uninstalls before installing, clearing localStorage and databases
> -
>
> Key: CB-10157
> URL: https://issues.apache.org/jira/browse/CB-10157
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Zeph Davies
>Assignee: Vladimir Kotikov
>  Labels: regression
>
> Due to the change in CB-9557, the application is ALWAYS uninstalled before 
> being installed.
> This means that the localStorage and any databases associated with the 
> application are CLEARED.
> This is a major problem for developing applications which rely on storing 
> some data between installations.



--
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-10157) Application uninstalls before installing, clearing localStorage and databases

2016-01-18 Thread Zeph Davies (JIRA)

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

Zeph Davies commented on CB-10157:
--

The linked issue caused this bug.

> Application uninstalls before installing, clearing localStorage and databases
> -
>
> Key: CB-10157
> URL: https://issues.apache.org/jira/browse/CB-10157
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Zeph Davies
>Assignee: Vladimir Kotikov
>  Labels: regression
>
> Due to the change in CB-9557, the application is ALWAYS uninstalled before 
> being installed.
> This means that the localStorage and any databases associated with the 
> application are CLEARED.
> This is a major problem for developing applications which rely on storing 
> some data between installations.



--
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-10375) Android 6.0 (Marshmallow) getCurrentAcceleration does not callback

2016-01-18 Thread Zeph Davies (JIRA)

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

Zeph Davies updated CB-10375:
-
Description: 
Tested using an application running on Android Lollipop and Marshmallow.
The Lollipop returns an accelerometer reading.
The Marshmallow never returns anything (nether success or error callback is 
called).

  was:
Tested using an application running on Android Lollipop and Marshmallow.
The Lollipop returns an accelerometer reading.
The Marshmallow never returns anything (nether callback is called).


> Android 6.0 (Marshmallow) getCurrentAcceleration does not callback
> --
>
> Key: CB-10375
> URL: https://issues.apache.org/jira/browse/CB-10375
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Device Motion
>Reporter: Zeph Davies
>Priority: Critical
>
> Tested using an application running on Android Lollipop and Marshmallow.
> The Lollipop returns an accelerometer reading.
> The Marshmallow never returns anything (nether success or error callback is 
> called).



--
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-10376) textarea autofocus doesn't work with WKWebView engine plugin

2016-01-18 Thread David Douglas (JIRA)
David Douglas created CB-10376:
--

 Summary: textarea autofocus doesn't work with WKWebView engine 
plugin
 Key: CB-10376
 URL: https://issues.apache.org/jira/browse/CB-10376
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin WKWebViewEngine
Affects Versions: 5.4.1
 Environment: Tested on iPhone 6 plus and iPhone 5S both running iOS 
9.2 

Reporter: David Douglas
Priority: Minor


When using WKWebView engine the iOS Soft Keyboard fails to automatically open 
when the 'autofocus' attribute is set.

How to recreate:
1. Add platform and keyboard plugin
```
cordova platform add ios@4.0.1
cordova plugin add cordova-plugin-keyboard@1.1.3 --save
```

2. Update iOS keyboard to enable focus commands in 'config.xml':
```

```

3. Add textarea to test with autofocus attribute.
```

```
(Note: Before adding the WKWebView engine plugin the UIWebView will 
automatically open the Soft Keyboard.)

4. Add the WKWebView engine plugin
```
cordova plugin add cordova-plugin-wkwebview-engine@1.0.1 --save
```

What happens:
Nothing.

What should happen:
The soft keyboard should open automatically (the same a UIWebView)





--
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-10376) autofocus doesn't work with WKWebView engine plugin

2016-01-18 Thread David Douglas (JIRA)

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

David Douglas updated CB-10376:
---
Summary: autofocus doesn't work with WKWebView engine plugin  (was: 
textarea autofocus doesn't work with WKWebView engine plugin)

> autofocus doesn't work with WKWebView engine plugin
> ---
>
> Key: CB-10376
> URL: https://issues.apache.org/jira/browse/CB-10376
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 5.4.1
> Environment: Tested on iPhone 6 plus and iPhone 5S both running iOS 
> 9.2 
>Reporter: David Douglas
>Priority: Minor
>
> When using WKWebView engine the iOS Soft Keyboard fails to automatically open 
> when the 'autofocus' attribute is set.
> How to recreate:
> 1. Add platform and keyboard plugin
> ```
> cordova platform add ios@4.0.1
> cordova plugin add cordova-plugin-keyboard@1.1.3 --save
> ```
> 2. Update iOS keyboard to enable focus commands in 'config.xml':
> ```
> 
> ```
> 3. Add textarea to test with autofocus attribute.
> ```
> 
> ```
> (Note: Before adding the WKWebView engine plugin the UIWebView will 
> automatically open the Soft Keyboard.)
> 4. Add the WKWebView engine plugin
> ```
> cordova plugin add cordova-plugin-wkwebview-engine@1.0.1 --save
> ```
> What happens:
> Nothing.
> What should happen:
> The soft keyboard should open automatically (the same a UIWebView)



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

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



[jira] [Closed] (CB-10377) How to disable camera using phonegap\cordaova

2016-01-18 Thread jcesarmobile (JIRA)

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

jcesarmobile closed CB-10377.
-
Resolution: Invalid

This is not an issue

Please, post your questions on QA sites like http://stackoverflow.com/ 

> How to disable camera using phonegap\cordaova
> -
>
> Key: CB-10377
> URL: https://issues.apache.org/jira/browse/CB-10377
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Reporter: RajeshwarReddy
>   Original Estimate: 336h
>  Remaining Estimate: 336h
>
> I want to disable the camera option using phonegap application.
> Is there any plugin by which i can do this



--
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-10374) Allow edit option on camera capture uses same image multiple time

2016-01-18 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-10374:
---

please, can you provide more information?
cordova CLI version?
plugin version?
device where you tested?
software version of that device?



> Allow edit option on camera capture uses same image multiple time
> -
>
> Key: CB-10374
> URL: https://issues.apache.org/jira/browse/CB-10374
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Reporter: Mika Andrianarijaona
>Priority: Minor
>
> We have multiple image field in our form and we use the allowEdit : true in 
> for camera getPicture. 
> We noticed that the same image is used on the edit screen for all the fields. 
> It looks like a cache issue or something similar



--
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-10372) Checkbox checked / Unchecked Very difficult

2016-01-18 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-10372:
---

Your issue is not clear, can you provide more information? screenshots might 
help too


> Checkbox checked / Unchecked Very difficult
> ---
>
> Key: CB-10372
> URL: https://issues.apache.org/jira/browse/CB-10372
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova for IOS
>Reporter: akash
>  Labels: sas
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> Cordova for IOS 
> I have successfully created project in android and same is working fine, but 
> same code nt working properly in cordova IOS.
> For Eg,
> 1. Checkbox check / uncheck become difficult for the user.
> 2. How to handle datepicker



--
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-10299) Cordova-windows 4.3.0 release Jan 11, 2016

2016-01-18 Thread ASF subversion and git services (JIRA)

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

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

Commit c8bfe139731b335936b0df5ec7790055713d9518 in cordova-docs's branch 
refs/heads/master from [~vladimir.kotikov]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-docs.git;h=c8bfe13 ]

CB-10299 Adds windows@4.3.0 release blog post

github close #453


> Cordova-windows 4.3.0 release Jan 11, 2016
> --
>
> Key: CB-10299
> URL: https://issues.apache.org/jira/browse/CB-10299
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Windows
>Reporter: Vladimir Kotikov
>Assignee: Vladimir Kotikov
>  Labels: triaged
>
> Following steps at 
> https://github.com/apache/cordova-coho/blob/master/docs/platforms-release-process.md



--
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-10299) Cordova-windows 4.3.0 release Jan 11, 2016

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10299:
-

Github user asfgit closed the pull request at:

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


> Cordova-windows 4.3.0 release Jan 11, 2016
> --
>
> Key: CB-10299
> URL: https://issues.apache.org/jira/browse/CB-10299
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Windows
>Reporter: Vladimir Kotikov
>Assignee: Vladimir Kotikov
>  Labels: triaged
>
> Following steps at 
> https://github.com/apache/cordova-coho/blob/master/docs/platforms-release-process.md



--
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-10373) Cordova plugin (navigator.camera.getPicture) to pick video is not full screen on iPad

2016-01-18 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-10373:
---

Camera plugin uses a popover on iPads, you can't change this behaviour right 
now.

I'm changing the issue from "Bug" to "Improvement"

> Cordova plugin (navigator.camera.getPicture) to pick video is not full screen 
> on iPad
> -
>
> Key: CB-10373
> URL: https://issues.apache.org/jira/browse/CB-10373
> Project: Apache Cordova
>  Issue Type: Bug
>Affects Versions: 5.3.3
>Reporter: Vasyl Kovalisko
>Priority: Critical
>
> I have an issue on iPad when using navigator.camera.getPicture(...). I am 
> trying to pick Video from library. I found that on iPad my viewer to pick 
> video files is very small. 
> How can I make this view to be full screen?
> This is my code to execute picking video from gallery:
> function () {
>   var defer = $q.defer();
>   navigator.camera.getPicture(
> function (mediaFiles) {
>   defer.resolve(mediaFiles);
> },
> function (errorData) {
>   defer.reject(errorData);
> },
> {
>   quality: 100,
>   allowEdit: false,
>   mediaType: Camera.MediaType.VIDEO,
>   sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
>   destinationType: Camera.DestinationType.FILE_URI
> });
> return defer.promise;
> }



--
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-10373) Cordova plugin (navigator.camera.getPicture) to pick video is not full screen on iPad

2016-01-18 Thread jcesarmobile (JIRA)

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

jcesarmobile updated CB-10373:
--
Priority: Minor  (was: Critical)

> Cordova plugin (navigator.camera.getPicture) to pick video is not full screen 
> on iPad
> -
>
> Key: CB-10373
> URL: https://issues.apache.org/jira/browse/CB-10373
> Project: Apache Cordova
>  Issue Type: Improvement
>Affects Versions: 5.3.3
>Reporter: Vasyl Kovalisko
>Priority: Minor
>
> I have an issue on iPad when using navigator.camera.getPicture(...). I am 
> trying to pick Video from library. I found that on iPad my viewer to pick 
> video files is very small. 
> How can I make this view to be full screen?
> This is my code to execute picking video from gallery:
> function () {
>   var defer = $q.defer();
>   navigator.camera.getPicture(
> function (mediaFiles) {
>   defer.resolve(mediaFiles);
> },
> function (errorData) {
>   defer.reject(errorData);
> },
> {
>   quality: 100,
>   allowEdit: false,
>   mediaType: Camera.MediaType.VIDEO,
>   sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
>   destinationType: Camera.DestinationType.FILE_URI
> });
> return defer.promise;
> }



--
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-10378) Viewport dimensions swapped after app restore in Android

2016-01-18 Thread Mathijs (JIRA)

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

Mathijs updated CB-10378:
-
Description: 
h1. Steps to reproduce
1. Assure  in config.xml
2. (Clean) start the app
3. Press the back button
4. Open the app switcher
5. Select the app

h1. Expected behaviour
As the app is started the measurements.js code dumps `screen.availWidth` and 
`screen.availHeight`. When restoring it after pressing the back button, the app 
initializes again and the same values should be displayed.

h1. Perceived behaviour
The values for `screen.availWidth` and `screen.availHeight` are swapped. This 
causes the app's viewport to be renedered at the wrong scale.

  was:
h1. Steps to reproduce
1. Assure  in config.xml
2. (Clean) start the app
3. Press the back button
4. Open the app switcher
5. Select the app

h1. Expected behaviour
As the app is started the measurements.js code dumps screen.availWidth and 
screen.availHeight. When restoring it after pressing the back button, the app 
initializes again and the same values should be displayed.

h1. Perceived behaviour
The values forscreen.availWidth and screen.availHeight are swapped. This causes 
the app's viewport to be renedered at the wrong scale.


> Viewport dimensions swapped after app restore in Android
> 
>
> Key: CB-10378
> URL: https://issues.apache.org/jira/browse/CB-10378
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 5.4.1
> Environment: Cordova Android 4.1.1 or 5.0.0
>Reporter: Mathijs
>
> h1. Steps to reproduce
> 1. Assure  in config.xml
> 2. (Clean) start the app
> 3. Press the back button
> 4. Open the app switcher
> 5. Select the app
> h1. Expected behaviour
> As the app is started the measurements.js code dumps `screen.availWidth` and 
> `screen.availHeight`. When restoring it after pressing the back button, the 
> app initializes again and the same values should be displayed.
> h1. Perceived behaviour
> The values for `screen.availWidth` and `screen.availHeight` are swapped. This 
> causes the app's viewport to be renedered at the wrong scale.



--
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-10378) Viewport dimensions swapped after app restore in Android

2016-01-18 Thread Mathijs (JIRA)

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

Mathijs updated CB-10378:
-
Description: 
h1. Steps to reproduce
1. Assure  in config.xml
2. (Clean) start the app
3. Press the back button
4. Open the app switcher
5. Select the app

h1. Expected behaviour
As the app is started the measurements.js code dumps screen.availWidth and 
screen.availHeight. When restoring it after pressing the back button, the app 
initializes again and the same values should be displayed.

h1. Perceived behaviour
The values forscreen.availWidth and screen.availHeight are swapped. This causes 
the app's viewport to be renedered at the wrong scale.

  was:
# Steps to reproduce
1. Assure  in config.xml
2. (Clean) start the app
3. Press the back button
4. Open the app switcher
5. Select the app

# Expected behaviour
As the app is started the measurements.js code dumps screen.availWidth and 
screen.availHeight. When restoring it after pressing the back button, the app 
initializes again and the same values should be displayed.

# Perceived behaviour
The values forscreen.availWidth and screen.availHeight are swapped. This causes 
the app's viewport to be renedered at the wrong scale.


> Viewport dimensions swapped after app restore in Android
> 
>
> Key: CB-10378
> URL: https://issues.apache.org/jira/browse/CB-10378
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 5.4.1
> Environment: Cordova Android 4.1.1 or 5.0.0
>Reporter: Mathijs
>
> h1. Steps to reproduce
> 1. Assure  in config.xml
> 2. (Clean) start the app
> 3. Press the back button
> 4. Open the app switcher
> 5. Select the app
> h1. Expected behaviour
> As the app is started the measurements.js code dumps screen.availWidth and 
> screen.availHeight. When restoring it after pressing the back button, the app 
> initializes again and the same values should be displayed.
> h1. Perceived behaviour
> The values forscreen.availWidth and screen.availHeight are swapped. This 
> causes the app's viewport to be renedered at the wrong scale.



--
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-10378) Viewport dimensions swapped after app restore in Android

2016-01-18 Thread Mathijs (JIRA)

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

Mathijs updated CB-10378:
-
Description: 
h1. Steps to reproduce
1. Assure {{}} in 
{{config.xml}}
2. (Clean) start the app
3. Press the back button
4. Open the app switcher
5. Select the app

h1. Expected behaviour
As the app is started the measurements.js code dumps {{screen.availWidth}} and 
{{screen.availHeight}}. When restoring it after pressing the back button, the 
app initializes again and the same values should be displayed.

h1. Perceived behaviour
The values for {{screen.availWidth}} and {{screen.availHeight}} are swapped. 
This causes the app's viewport to be renedered at the wrong scale.

  was:
h1. Steps to reproduce
1. Assure  in config.xml
2. (Clean) start the app
3. Press the back button
4. Open the app switcher
5. Select the app

h1. Expected behaviour
As the app is started the measurements.js code dumps `screen.availWidth` and 
`screen.availHeight`. When restoring it after pressing the back button, the app 
initializes again and the same values should be displayed.

h1. Perceived behaviour
The values for `screen.availWidth` and `screen.availHeight` are swapped. This 
causes the app's viewport to be renedered at the wrong scale.


> Viewport dimensions swapped after app restore in Android
> 
>
> Key: CB-10378
> URL: https://issues.apache.org/jira/browse/CB-10378
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 5.4.1
> Environment: Cordova Android 4.1.1 or 5.0.0
>Reporter: Mathijs
>
> h1. Steps to reproduce
> 1. Assure {{}} in 
> {{config.xml}}
> 2. (Clean) start the app
> 3. Press the back button
> 4. Open the app switcher
> 5. Select the app
> h1. Expected behaviour
> As the app is started the measurements.js code dumps {{screen.availWidth}} 
> and {{screen.availHeight}}. When restoring it after pressing the back button, 
> the app initializes again and the same values should be displayed.
> h1. Perceived behaviour
> The values for {{screen.availWidth}} and {{screen.availHeight}} are swapped. 
> This causes the app's viewport to be renedered at the wrong scale.



--
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-10378) Viewport dimensions swapped after app restore in Android

2016-01-18 Thread Mathijs (JIRA)
Mathijs created CB-10378:


 Summary: Viewport dimensions swapped after app restore in Android
 Key: CB-10378
 URL: https://issues.apache.org/jira/browse/CB-10378
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 5.4.1
 Environment: Cordova Android 4.1.1 or 5.0.0
Reporter: Mathijs


# Steps to reproduce
1. Assure  in config.xml
2. (Clean) start the app
3. Press the back button
4. Open the app switcher
5. Select the app

# Expected behaviour
As the app is started the measurements.js code dumps screen.availWidth and 
screen.availHeight. When restoring it after pressing the back button, the app 
initializes again and the same values should be displayed.

# Perceived behaviour
The values forscreen.availWidth and screen.availHeight are swapped. This causes 
the app's viewport to be renedered at the wrong scale.



--
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-10373) Cordova plugin (navigator.camera.getPicture) to pick video is not full screen on iPad

2016-01-18 Thread jcesarmobile (JIRA)

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

jcesarmobile updated CB-10373:
--
Issue Type: Improvement  (was: Bug)

> Cordova plugin (navigator.camera.getPicture) to pick video is not full screen 
> on iPad
> -
>
> Key: CB-10373
> URL: https://issues.apache.org/jira/browse/CB-10373
> Project: Apache Cordova
>  Issue Type: Improvement
>Affects Versions: 5.3.3
>Reporter: Vasyl Kovalisko
>Priority: Critical
>
> I have an issue on iPad when using navigator.camera.getPicture(...). I am 
> trying to pick Video from library. I found that on iPad my viewer to pick 
> video files is very small. 
> How can I make this view to be full screen?
> This is my code to execute picking video from gallery:
> function () {
>   var defer = $q.defer();
>   navigator.camera.getPicture(
> function (mediaFiles) {
>   defer.resolve(mediaFiles);
> },
> function (errorData) {
>   defer.reject(errorData);
> },
> {
>   quality: 100,
>   allowEdit: false,
>   mediaType: Camera.MediaType.VIDEO,
>   sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
>   destinationType: Camera.DestinationType.FILE_URI
> });
> return defer.promise;
> }



--
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-10373) Cordova camera plugin (navigator.camera.getPicture) add option to pick video is full screen instead of popover on iPad

2016-01-18 Thread jcesarmobile (JIRA)

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

jcesarmobile updated CB-10373:
--
Affects Version/s: (was: 5.3.3)
  Component/s: Plugin Camera
   iOS
  Summary: Cordova camera plugin (navigator.camera.getPicture) add 
option to pick video is full screen instead of popover on iPad  (was: Cordova 
plugin (navigator.camera.getPicture) to pick video is not full screen on iPad)

> Cordova camera plugin (navigator.camera.getPicture) add option to pick video 
> is full screen instead of popover on iPad
> --
>
> Key: CB-10373
> URL: https://issues.apache.org/jira/browse/CB-10373
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: iOS, Plugin Camera
>Reporter: Vasyl Kovalisko
>Priority: Minor
>
> I have an issue on iPad when using navigator.camera.getPicture(...). I am 
> trying to pick Video from library. I found that on iPad my viewer to pick 
> video files is very small. 
> How can I make this view to be full screen?
> This is my code to execute picking video from gallery:
> function () {
>   var defer = $q.defer();
>   navigator.camera.getPicture(
> function (mediaFiles) {
>   defer.resolve(mediaFiles);
> },
> function (errorData) {
>   defer.reject(errorData);
> },
> {
>   quality: 100,
>   allowEdit: false,
>   mediaType: Camera.MediaType.VIDEO,
>   sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
>   destinationType: Camera.DestinationType.FILE_URI
> });
> return defer.promise;
> }



--
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-8396) Add AutoHideSplashScreen logic to Android's Splashscreen

2016-01-18 Thread ASF subversion and git services (JIRA)

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

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

Commit 7a12204ba9c49d8b23cf67634e2d69890944274a in 
cordova-plugin-splashscreen's branch refs/heads/master from [~daserge]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-splashscreen.git;h=7a12204
 ]

CB-8396 Add AutoHideSplashScreen logic to Android's Splashscreen

Also initializing the splashscreen image irrespective of firstShow because the 
splashscreen could be shown manually via navigator.splashscreen.show(); after 
exiting the app using BackButton or via navigator.app.exitApp();


> Add AutoHideSplashScreen logic to Android's Splashscreen
> 
>
> Key: CB-8396
> URL: https://issues.apache.org/jira/browse/CB-8396
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin SplashScreen
>Affects Versions: Master
> Environment: Android 5.0.1 emulator. 
>Reporter: Tom A
>  Labels: android
>
> In config.xml I've set:
> {code:title=config.xml|borderStyle=solid}
> `
> {code}
> This has no effect on the Android platform. Splash screen autohides after 3 
> seconds (the default SplashScreenDelay).
> Tested on Android 5.0.1.
> If I look at the code here 
> [https://github.com/apache/cordova-plugin-splashscreen/blob/master/src/android/SplashScreen.java]
>  I'd expect to see something like this somewhere: 
> {code:title=SplashScreen.java|borderStyle=solid}
> preferences.getBoolean("AutoHideSplashScreen", false);
> {code}
> Maybe this has something to do with it?
> If you need any more info, please let me know.



--
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-8396) Add AutoHideSplashScreen logic to Android's Splashscreen

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8396:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-plugin-splashscreen/pull/74


> Add AutoHideSplashScreen logic to Android's Splashscreen
> 
>
> Key: CB-8396
> URL: https://issues.apache.org/jira/browse/CB-8396
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin SplashScreen
>Affects Versions: Master
> Environment: Android 5.0.1 emulator. 
>Reporter: Tom A
>  Labels: android
>
> In config.xml I've set:
> {code:title=config.xml|borderStyle=solid}
> `
> {code}
> This has no effect on the Android platform. Splash screen autohides after 3 
> seconds (the default SplashScreenDelay).
> Tested on Android 5.0.1.
> If I look at the code here 
> [https://github.com/apache/cordova-plugin-splashscreen/blob/master/src/android/SplashScreen.java]
>  I'd expect to see something like this somewhere: 
> {code:title=SplashScreen.java|borderStyle=solid}
> preferences.getBoolean("AutoHideSplashScreen", false);
> {code}
> Maybe this has something to do with it?
> If you need any more info, please let me know.



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

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



[jira] [Resolved] (CB-8396) Add AutoHideSplashScreen logic to Android's Splashscreen

2016-01-18 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov resolved CB-8396.
-
Resolution: Fixed

Fixed in 3.1.1-dev

> Add AutoHideSplashScreen logic to Android's Splashscreen
> 
>
> Key: CB-8396
> URL: https://issues.apache.org/jira/browse/CB-8396
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin SplashScreen
>Affects Versions: Master
> Environment: Android 5.0.1 emulator. 
>Reporter: Tom A
>  Labels: android
>
> In config.xml I've set:
> {code:title=config.xml|borderStyle=solid}
> `
> {code}
> This has no effect on the Android platform. Splash screen autohides after 3 
> seconds (the default SplashScreenDelay).
> Tested on Android 5.0.1.
> If I look at the code here 
> [https://github.com/apache/cordova-plugin-splashscreen/blob/master/src/android/SplashScreen.java]
>  I'd expect to see something like this somewhere: 
> {code:title=SplashScreen.java|borderStyle=solid}
> preferences.getBoolean("AutoHideSplashScreen", false);
> {code}
> Maybe this has something to do with it?
> If you need any more info, please let me know.



--
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-10373) Cordova plugin (navigator.camera.getPicture) to pick video is not full screen on iPad

2016-01-18 Thread Vasyl Kovalisko (JIRA)
Vasyl Kovalisko created CB-10373:


 Summary: Cordova plugin (navigator.camera.getPicture) to pick 
video is not full screen on iPad
 Key: CB-10373
 URL: https://issues.apache.org/jira/browse/CB-10373
 Project: Apache Cordova
  Issue Type: Bug
Affects Versions: 5.3.3
Reporter: Vasyl Kovalisko
Priority: Critical


I have an issue on iPad when using navigator.camera.getPicture(...). I am 
trying to pick Video from library. I found that on iPad my viewer to pick video 
files is very small. 

How can I make this view to be full screen?

This is my code to execute picking video from gallery:
function () {
  var defer = $q.defer();
  navigator.camera.getPicture(
function (mediaFiles) {
  defer.resolve(mediaFiles);
},
function (errorData) {
  defer.reject(errorData);
},
{
  quality: 100,
  allowEdit: false,
  mediaType: Camera.MediaType.VIDEO,
  sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
  destinationType: Camera.DestinationType.FILE_URI
});
return defer.promise;
}



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

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



[jira] [Closed] (CB-10365) Android 6.0 WebView don't intercept all urls

2016-01-18 Thread Jordi Murgo (JIRA)

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

Jordi Murgo closed CB-10365.

Resolution: Not A Problem

Opps. 
I have tested again with several devices (nexus5 with 6.0.0 & 6.0.1), and it 
works fine. :(

I apologice for the inconvenience.

> Android 6.0 WebView don't intercept all urls
> 
>
> Key: CB-10365
> URL: https://issues.apache.org/jira/browse/CB-10365
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: Master, 5.0.0
>Reporter: Jordi Murgo
>Priority: Critical
>  Labels: easyfix
>
> The call to public WebResourceResponse shouldInterceptRequest(WebView view, 
> String url) was deprecated on LOLLIPOP, in favour of the new public 
> WebResourceResponse shouldInterceptRequest(WebView view, WebResourceRequest 
> request).
> Android 6.0 WebView use the new one to handle ALL requests, and the old one 
> only to handle the main document request. 
> Possible fix in SystemWebViewClient.java, add the following method:
> @TargetApi(Build.VERSION_CODES.LOLLIPOP)
> @Override
> public WebResourceResponse shouldInterceptRequest(WebView view, 
> WebResourceRequest request) {
> return this.shouldInterceptRequest(view, request.getUrl().toString());
> }
> Salut!



--
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-9516) Android SplashScreen - Spinner Does Not Display

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9516:


Github user daserge commented on the pull request:


https://github.com/apache/cordova-plugin-splashscreen/pull/75#issuecomment-172594119
  
Title and message mode:

![device-2016-01-18-195856](https://cloud.githubusercontent.com/assets/4272078/12397546/f4bf2a1c-be1e-11e5-8e45-91a794072d62.png)

Spinner-only mode:

![device-2016-01-18-200106](https://cloud.githubusercontent.com/assets/4272078/12397547/f4c3f844-be1e-11e5-95c4-e9324523b481.png)


> Android SplashScreen - Spinner Does Not Display
> ---
>
> Key: CB-9516
> URL: https://issues.apache.org/jira/browse/CB-9516
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 5.0.1
> Environment: Cordova 5 and Android Lollipop 5.0 and 5.1
>Reporter: Mark Ludlow
>Priority: Minor
>  Labels: android, easyfix
>
> The spinner dialog is not displaying on Android. I believe one cause of this 
> is the message "spinner > stop" which being used to display the webview, is 
> also stopping the spinner prematurely.
> See this comment in CoreAndroid.js:
> // This gets called from JavaScript onCordovaReady to show the webview.
> // I recommend we change the name of the Message as spinner/stop is not
> // indicative of what this actually does (shows the webview).
> cordova.getActivity().runOnUiThread(new Runnable() {
> public void run() {
> webView.getPluginManager().postMessage("spinner", 
> "stop");
> }
> });
> The "spinner > stop" message is fired almost immediately after 
> SplashScreen.spinnerStart() is called, thus hiding the spinner before it 
> actually displays. I was able to partially fix this by commenting out the 
> call to spinnerStop() in the "spinner > stop" message handler:
> if ("spinner".equals(id)) {
> if ("stop".equals(data.toString())) {
> //this.spinnerStop();
> getView().setVisibility(View.VISIBLE);
> }
> }
> The second issue, at least for Cordova 5 and Lollipop, is that in the 
> pluginInitialize() method, loadSpinner() is being called before 
> showSplashScreen(true).
> I reversed these lines and made the change above and now the splashscreen 
> displays correctly. 



--
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-10379) Update splashscreen node package to 3.1.0

2016-01-18 Thread Sven Tobback (JIRA)
Sven Tobback created CB-10379:
-

 Summary: Update splashscreen node package to 3.1.0
 Key: CB-10379
 URL: https://issues.apache.org/jira/browse/CB-10379
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin SplashScreen
Reporter: Sven Tobback


The node package still refers to 3.0.0: 
https://www.npmjs.com/package/cordova-plugin-splashscreen



--
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-10379) Update splashscreen node package to 3.1.0

2016-01-18 Thread Sven Tobback (JIRA)

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

Sven Tobback updated CB-10379:
--
Description: 
The node package of the splashscreen plugin still refers to version 3.0.0 while 
3.1.0 is available: https://www.npmjs.com/package/cordova-plugin-splashscreen.

Kind Regards,
Sven T



  was:The node package of the splashscreen plugin still refers to version 3.0.0 
while 3.1.0 is available: 
https://www.npmjs.com/package/cordova-plugin-splashscreen


> Update splashscreen node package to 3.1.0
> -
>
> Key: CB-10379
> URL: https://issues.apache.org/jira/browse/CB-10379
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Reporter: Sven Tobback
>
> The node package of the splashscreen plugin still refers to version 3.0.0 
> while 3.1.0 is available: 
> https://www.npmjs.com/package/cordova-plugin-splashscreen.
> Kind Regards,
> Sven T



--
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-10379) Update splashscreen node package to 3.1.0

2016-01-18 Thread Sven Tobback (JIRA)

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

Sven Tobback updated CB-10379:
--
Description: The node package of the splashscreen plugin still refers to 
version 3.0.0 while 3.1.0 is available: 
https://www.npmjs.com/package/cordova-plugin-splashscreen  (was: The node 
package still refers to 3.0.0: 
https://www.npmjs.com/package/cordova-plugin-splashscreen)

> Update splashscreen node package to 3.1.0
> -
>
> Key: CB-10379
> URL: https://issues.apache.org/jira/browse/CB-10379
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Reporter: Sven Tobback
>
> The node package of the splashscreen plugin still refers to version 3.0.0 
> while 3.1.0 is available: 
> https://www.npmjs.com/package/cordova-plugin-splashscreen



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

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



[jira] [Closed] (CB-10280) Old WinJS/js/base.js added to project

2016-01-18 Thread Vladimir Kotikov (JIRA)

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

Vladimir Kotikov closed CB-10280.
-
Resolution: Fixed

Yes, WinJS was updated shortly before the release. Closing as fixed.

> Old WinJS/js/base.js added to project
> -
>
> Key: CB-10280
> URL: https://issues.apache.org/jira/browse/CB-10280
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Affects Versions: 5.4.1
> Environment: cordova-windows@4.2
>Reporter: Roberto De Simone
>  Labels: triaged, wfc
>
> An old WinJS version (base.js) is added to the project.
> Creating this issue the current version of WinJS is 4.4.0. The 
> cordova-windows@4.2 platform adds 4.0.1.
> IMO the latest version of WinJS should be added or there should be a setting 
> in config.xml to specify the desired WinJS version.
> Another idea might be to not include/inject at all WinJS into the project. It 
> should be part of the documentation to let the developer know, that at least 
> base.js is required. In this case all files of WinJS will be part of the 
> WebApp.



--
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-10102) statusbar removeObserver is wrong

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10102:
-

Github user asfgit closed the pull request at:

https://github.com/apache/cordova-plugin-statusbar/pull/45


> statusbar removeObserver is wrong
> -
>
> Key: CB-10102
> URL: https://issues.apache.org/jira/browse/CB-10102
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Statusbar
> Environment: iOS
>Reporter: jcesarmobile
>Assignee: jcesarmobile
>Priority: Minor
>
> The current code is wrong
> {code}[[NSNotificationCenter defaultCenter] removeObserver:self 
> forKeyPath:UIApplicationDidChangeStatusBarFrameNotification];
> {code}
> It should be
> {code}
> [[NSNotificationCenter defaultCenter]removeObserver:self 
> name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
> {code}
> It might crash on plugin dealocation



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

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



[jira] [Resolved] (CB-10102) statusbar removeObserver is wrong

2016-01-18 Thread jcesarmobile (JIRA)

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

jcesarmobile resolved CB-10102.
---
Resolution: Fixed

Fixed in 2.1.1-dev

> statusbar removeObserver is wrong
> -
>
> Key: CB-10102
> URL: https://issues.apache.org/jira/browse/CB-10102
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Statusbar
> Environment: iOS
>Reporter: jcesarmobile
>Assignee: jcesarmobile
>Priority: Minor
>
> The current code is wrong
> {code}[[NSNotificationCenter defaultCenter] removeObserver:self 
> forKeyPath:UIApplicationDidChangeStatusBarFrameNotification];
> {code}
> It should be
> {code}
> [[NSNotificationCenter defaultCenter]removeObserver:self 
> name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
> {code}
> It might crash on plugin dealocation



--
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-10326) don't copy resource-file files at plugin install time

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10326:
-

GitHub user biasmv opened a pull request:

https://github.com/apache/cordova-windows/pull/139

don't copy resource-files at plugin install

Instead, reference the file in the plugin directory. This allows to have 
multiple
source files map to the same destination file inside the build directory and
choose the appropriate file based on the build configuration, e.g. 
architecture.

This implements a fix for CB-10326

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

$ git pull https://github.com/biasmv/cordova-windows master

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

https://github.com/apache/cordova-windows/pull/139.patch

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

This closes #139


commit e3425d97fd6bdd23823ba5430dca780405e803f6
Author: Marco Biasini 
Date:   2016-01-18T10:24:29Z

don't copy resource-files at plugin install

Instead, reference the file in the plugin directory. This allows to have 
multiple
source files map to the same destination file inside the build directory and
choose the appropriate file based on the build configuration, e.g. 
architecture.

This implements a fix for CB-10326




> don't copy resource-file files at plugin install time
> -
>
> Key: CB-10326
> URL: https://issues.apache.org/jira/browse/CB-10326
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Reporter: Marco Biasini
>
> I just came across the newly added resource-file support for phonegap for 
> windows. I've tried to use it for adding native dlls dependencies to the 
> application. I couldn't completely get it to work with the current version.
> I'd like to propose a small change which would make the resource-file tag 
> more powerful and shouldn't impact existing users:
> Judging from the source code, the file is copied to the target when the 
> plugin is installed. I'd propose not to copy to the target but to point the 
> include parameter to the existing file. This allows use-cases where a 
> different .dll has to be copied based on the architecture of the project, 
> .e.g.
> 
> 
> 
> This should generate code like this for each resource-file entry:
> 
> 
> foo.dll
> Always
> 
> 



--
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-10374) Allow edit option on camera capture uses same image multiple time

2016-01-18 Thread Mika Andrianarijaona (JIRA)

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

Mika Andrianarijaona updated CB-10374:
--
Summary: Allow edit option on camera capture uses same image multiple time  
(was: Allow edit option on camera capture use same image multiple time)

> Allow edit option on camera capture uses same image multiple time
> -
>
> Key: CB-10374
> URL: https://issues.apache.org/jira/browse/CB-10374
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Reporter: Mika Andrianarijaona
>Priority: Minor
>
> We have multiple image field in our form and we use the allowEdit : true in 
> for camera getPicture. 
> We noticed that the same image is used on the edit screen for all the fields. 
> It looks like a cache issue or something similar



--
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-10374) Allow edit option on camera capture use same image multiple time

2016-01-18 Thread Mika Andrianarijaona (JIRA)
Mika Andrianarijaona created CB-10374:
-

 Summary: Allow edit option on camera capture use same image 
multiple time
 Key: CB-10374
 URL: https://issues.apache.org/jira/browse/CB-10374
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Camera
Reporter: Mika Andrianarijaona
Priority: Minor


We have multiple image field in our form and we use the allowEdit : true in for 
camera getPicture. 
We noticed that the same image is used on the edit screen for all the fields. 
It looks like a cache issue or something similar



--
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-10306) [Android] Support Crosswalk or other engines through a pluggable mechanism

2016-01-18 Thread Markus Kristo (JIRA)

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

Markus Kristo commented on CB-10306:


I agree that this would be awesome if it could be implemented. Another benefit 
of using the same browser engine is that the main webview and the inappbrowser 
would share cookies/sessions. This is very handy for the case when you use the 
inappbrowser for SSO. 

In previous projects we have hackishly used either Ludei WebView+ or Crosswalk 
by doing like 
[this|https://github.com/mkristo/cordova-plugin-inappbrowser/commit/8949dfabd91bcef338dd3f5f9a78a188dd492b02].
 That solution works, but it would be nice if the inappbrowser would support 
this out-of-the-box.

Thanks!

> [Android] Support Crosswalk or other engines through a pluggable mechanism
> --
>
> Key: CB-10306
> URL: https://issues.apache.org/jira/browse/CB-10306
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin InAppBrowser
>Reporter: Daniel Vicory
>  Labels: triaged
>
> Currently InAppBrowser uses the system WebView on Android, which is not 
> awesome for several reasons.
> # WebView is only Chromium in 4.4 and up, and 4.4 uses an old one at that.
> # Some features are turned off even in Chromium-based WebViews.
> # WebView pre-4.4 is pretty awful and doesn't support many modern web 
> technologies.
> I propose that it be made possible to use Crosswalk or other engines with 
> InAppBrowser. We have already begun work on this [on a 
> fork|https://github.com/appfolio/cordova-plugin-inappbrowser/tree/crosswalkSupport]
>  and would be willing to try to get this merged upstream. This is for Android 
> only though; right now we're not planning to apply these same ideas to iOS.
> The general strategy we took was to reuse Cordova: it re-creates a whole 
> Cordova view. This makes many of the settings that were set manually no 
> longer necessary, as Cordova sets them by default. By default, it doesn't 
> reuse any of the plugins or preferences you've defined in {{config.xml}}, but 
> adds an "internal" plugin that the new Cordova view uses which disables 
> bridge access and re-implements the same functionality InAppBrowser 
> previously had.
> To change the engine/views/etc being used, you can override 
> {{InAppBrowserDriver}}, which can be configured with the 
> {{inAppBrowserDriver}} preference in {{config.xml}}. We can open source a 
> driver that enables Crosswalk with this new architecture.



--
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-10280) Old WinJS/js/base.js added to project

2016-01-18 Thread Roberto De Simone (JIRA)

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

Roberto De Simone commented on CB-10280:


[~vladimir.kotikov] does a specific cordova-windows platform depend on a 
specific base.js? There might be a version conflict if somebody is using WinJS 
(the UI framework).

> Old WinJS/js/base.js added to project
> -
>
> Key: CB-10280
> URL: https://issues.apache.org/jira/browse/CB-10280
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Affects Versions: 5.4.1
> Environment: cordova-windows@4.2
>Reporter: Roberto De Simone
>  Labels: triaged, wfc
>
> An old WinJS version (base.js) is added to the project.
> Creating this issue the current version of WinJS is 4.4.0. The 
> cordova-windows@4.2 platform adds 4.0.1.
> IMO the latest version of WinJS should be added or there should be a setting 
> in config.xml to specify the desired WinJS version.
> Another idea might be to not include/inject at all WinJS into the project. It 
> should be part of the documentation to let the developer know, that at least 
> base.js is required. In this case all files of WinJS will be part of the 
> WebApp.



--
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-10228) AppendUserAgent not working with WKWebView

2016-01-18 Thread vB Results, LLC. (JIRA)

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

vB Results, LLC. commented on CB-10228:
---

And it doesn't work for iOS 8 either, same testing devices.

> AppendUserAgent not working with WKWebView
> --
>
> Key: CB-10228
> URL: https://issues.apache.org/jira/browse/CB-10228
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Reporter: vB Results, LLC.
>  Labels: triaged, wkwebview-1.0.2
>
> Using the npm version of cordova-plugin-wkwebview-engine and cordova-ios@4 
> and AppendUserAgent is the most lightweight way to detect whether or not we 
> are in the app on a remote site.  Please fix, the lack of this means we 
> cannot benefit from using WKWebView :(



--
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-10382) Build issue cordova-ios 4.0.1 with cordova-plugin-camera

2016-01-18 Thread David Hogg (JIRA)
David Hogg created CB-10382:
---

 Summary: Build issue cordova-ios 4.0.1 with cordova-plugin-camera
 Key: CB-10382
 URL: https://issues.apache.org/jira/browse/CB-10382
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, Plugin Camera
Affects Versions: 1.2.0
 Environment: iOS
Reporter: David Hogg


Getting compile error on iOS with camera plugin:

cordova-plugin-camera/CDVCamera.m:23:9: 'Cordova/NSData+Base64.h' file not found

This was an issue found last year (CB-9247) that was fixed with the following 
line, but now seems to have reappeared.

#ifndef __CORDOVA_4_0_0
#import 
#endif




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

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



[jira] [Resolved] (CB-10382) Build issue cordova-ios 4.0.1 with cordova-plugin-camera

2016-01-18 Thread Shazron Abdullah (JIRA)

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

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

Explicitly install version 2.0 of the plugin. See the "Update" section of this 
blog post http://cordova.apache.org/news/2015/11/24/plugins-release.html

> Build issue cordova-ios 4.0.1 with cordova-plugin-camera
> 
>
> Key: CB-10382
> URL: https://issues.apache.org/jira/browse/CB-10382
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Affects Versions: 1.2.0
> Environment: iOS
>Reporter: David Hogg
>
> Getting compile error on iOS with camera plugin:
> cordova-plugin-camera/CDVCamera.m:23:9: 'Cordova/NSData+Base64.h' file not 
> found
> This was an issue found last year (CB-9247) that was fixed with the following 
> line, but now seems to have reappeared.
> #ifndef __CORDOVA_4_0_0
> #import 
> #endif



--
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-10382) Build issue cordova-ios 4.0.1 with cordova-plugin-camera

2016-01-18 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-10382:
--
Component/s: (was: iOS)

> Build issue cordova-ios 4.0.1 with cordova-plugin-camera
> 
>
> Key: CB-10382
> URL: https://issues.apache.org/jira/browse/CB-10382
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Affects Versions: 1.2.0
> Environment: iOS
>Reporter: David Hogg
>
> Getting compile error on iOS with camera plugin:
> cordova-plugin-camera/CDVCamera.m:23:9: 'Cordova/NSData+Base64.h' file not 
> found
> This was an issue found last year (CB-9247) that was fixed with the following 
> line, but now seems to have reappeared.
> #ifndef __CORDOVA_4_0_0
> #import 
> #endif



--
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-10372) Checkbox checked / Unchecked Very difficult

2016-01-18 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10372:
---

This is NOT a Cordova problem. Checkboxes and the like are part of the WebView, 
and not under control of Cordova. Put up a reproducible test case with a new 
project. This is not a proper bug report.

> Checkbox checked / Unchecked Very difficult
> ---
>
> Key: CB-10372
> URL: https://issues.apache.org/jira/browse/CB-10372
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova for IOS
>Reporter: akash
>  Labels: sas
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> Cordova for IOS 
> I have successfully created project in android and same is working fine, but 
> same code nt working properly in cordova IOS.
> For Eg,
> 1. Checkbox check / uncheck become difficult for the user.
> 2. How to handle datepicker



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

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



[jira] [Resolved] (CB-10372) Checkbox checked / Unchecked Very difficult

2016-01-18 Thread Shazron Abdullah (JIRA)

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

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

> Checkbox checked / Unchecked Very difficult
> ---
>
> Key: CB-10372
> URL: https://issues.apache.org/jira/browse/CB-10372
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova for IOS
>Reporter: akash
>  Labels: sas
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> Cordova for IOS 
> I have successfully created project in android and same is working fine, but 
> same code nt working properly in cordova IOS.
> For Eg,
> 1. Checkbox check / uncheck become difficult for the user.
> 2. How to handle datepicker



--
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-10372) Checkbox checked / Unchecked Very difficult

2016-01-18 Thread akash (JIRA)

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

akash commented on CB-10372:



 Thanks jcesarmobile for the reply.

I have added list of checkboxes in one of page, not able to tick / untick the 
checkbox.
Same is working fine in Android.

Please assist.


> Checkbox checked / Unchecked Very difficult
> ---
>
> Key: CB-10372
> URL: https://issues.apache.org/jira/browse/CB-10372
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova for IOS
>Reporter: akash
>  Labels: sas
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> Cordova for IOS 
> I have successfully created project in android and same is working fine, but 
> same code nt working properly in cordova IOS.
> For Eg,
> 1. Checkbox check / uncheck become difficult for the user.
> 2. How to handle datepicker



--
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-10366) Readonly textarea shows iOS keyboard accessory view

2016-01-18 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10366:
---

Probably nothing we can do, this is built in to the handling of WKWebView, we 
do nothing to interfere with this. Probably a WKWebView bug.

> Readonly textarea shows iOS keyboard accessory view
> ---
>
> Key: CB-10366
> URL: https://issues.apache.org/jira/browse/CB-10366
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 5.4.1
> Environment: iPhone 6 plus (iOS 9.2)
>Reporter: David Douglas
>Priority: Minor
>  Labels: ios9
>
> Readonly textarea opens the iOS keyboard accessory view when using the 
> WKWebView engine. 
> How to recreate:
> 1. Install WKWebView engine plugin:
> ```
> cordova platform add ios@4.0.1
> cordova plugin add cordova-plugin-wkwebview-engine@1.0.1 --save
> ```
> 2. Tap inside a textarea with 'readonly' attribute.
> ```
> 
> ```
> What happens:
> The iOS keyboard accessory view opens.
> What should happen:
> Nothing (the same as UIWebView).



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

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



[jira] [Closed] (CB-10310) iOS Build fails after upgrade to cordova-ios@4.0.1

2016-01-18 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah closed CB-10310.
-

> iOS Build fails after upgrade to cordova-ios@4.0.1
> --
>
> Key: CB-10310
> URL: https://issues.apache.org/jira/browse/CB-10310
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova CLI: 5.4.1
> Ionic Version: 1.2.1-nightly-1867
> Ionic CLI Version: 1.7.12
> Ionic App Lib Version: 0.6.5
> ios-deploy version: 1.8.4
> ios-sim version: 5.0.6
> OS: Mac OS X El Capitan
> Node Version: v5.4.0
> Xcode version: Xcode 7.2 Build version 7C68
> npm -v : 3.5.3
> bower -v : 1.7.2
> cordova platform :
> Installed platforms: android 5.0.0, ios 4.0.1
> Android tools and Platform-tools :
> Pkg.Revision=24.4.1
> Pkg.Revision=23.1
> brew config :
> HOMEBREW_VERSION: 0.9.5
> CPU: quad-core 64-bit ivybridge
> OS X: 10.11.2-x86_64
> Xcode: 7.2
> CLT: 7.2.0.0.1.1447826929
> Clang: 7.0 build 700
> X11: N/A
> System Ruby: 2.0.0-p645
> Perl: /usr/bin/perl
> Python: /usr/local/bin/python => 
> /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/bin/python2.7
> Ruby: /Users/jagdish/.rbenv/shims/ruby => 
> /Users/jagdish/.rbenv/versions/2.3.0/bin/ruby
> Java: 1.8.0_66
> psql --version: psql (PostgreSQL) 9.4.5
>Reporter: Jagdish Adusumalli
>  Labels: build-failure, build-problem, cordova-ios-4.0.1, ios
> Attachments: build error cordova-plugin-diagnostic.png, build error 
> with cordova-plugin-camera.png, build error with cordova-plugin-sms.png
>
>
> I'm working on an ionic app and just upgrade the ios platform to 4.0.1.
> i am unable to build the ios app now using the command
> "ionic build ios" or "cordova build ios"
> i observed the error is arising from the various plugins which are failing 
> now.
> i removed the plugins one after another to see how many plugins are 
> incompatible 
> and not working and found the below 5 plugins are raising the same error
> cordova-plugin-camera 1.2.0 "Camera"
> cordova.plugins.diagnostic 2.3.5 "Diagnostic"
> com.cordova.plugins.sms 0.1.6 "Cordova SMS Plugin"
> com.dbaq.cordova.contactsPhoneNumbers 0.0.5 "Contacts Phone Numbers"
> cordova-plugin-sms 1.0.5 "SMS"
> Error sample raised for sms plugin looks as below
> ** BUILD FAILED **
> The following build commands failed:
>   CompileC 
> build/qiddlestage.build/Debug-iphonesimulator/qiddlestage.build/Objects-normal/i386/Sms.o
>  qiddlestage/Plugins/com.cordova.plugins.sms/Sms.m normal i386 objective-c 
> com.apple.compilers.llvm.clang.1_0.compiler
> (1 failure)
> ERROR building one of the platforms: Error code 65 for command: xcodebuild 
> with args: 
> -xcconfig,/Users/jagdish/work/ywt-moms/platforms/ios/cordova/build-debug.xcconfig,-project,qiddlestage.xcodeproj,ARCHS=i386,-target,qiddlestage,-configuration,Debug,-sdk,iphonesimulator,build,VALID_ARCHS=i386,CONFIGURATION_BUILD_DIR=/Users/jagdish/work/ywt-moms/platforms/ios/build/emulator,SHARED_PRECOMPS_DIR=/Users/jagdish/work/ywt-moms/platforms/ios/build/sharedpch
> You may not have the required environment or OS to build this project
> Error: Error code 65 for command: xcodebuild with args: 
> -xcconfig,/Users/jagdish/work/ywt-moms/platforms/ios/cordova/build-debug.xcconfig,-project,qiddlestage.xcodeproj,ARCHS=i386,-target,qiddlestage,-configuration,Debug,-sdk,iphonesimulator,build,VALID_ARCHS=i386,CONFIGURATION_BUILD_DIR=/Users/jagdish/work/ywt-moms/platforms/ios/build/emulator,SHARED_PRECOMPS_DIR=/Users/jagdish/work/ywt-moms/platforms/ios/build/sharedpch
> also attaching error screenshots with various plugins.



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

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



[jira] [Reopened] (CB-10372) Checkbox checked / Unchecked Very difficult

2016-01-18 Thread akash (JIRA)

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

akash reopened CB-10372:


Not yet resolved.

> Checkbox checked / Unchecked Very difficult
> ---
>
> Key: CB-10372
> URL: https://issues.apache.org/jira/browse/CB-10372
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova for IOS
>Reporter: akash
>  Labels: sas
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> Cordova for IOS 
> I have successfully created project in android and same is working fine, but 
> same code nt working properly in cordova IOS.
> For Eg,
> 1. Checkbox check / uncheck become difficult for the user.
> 2. How to handle datepicker



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

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



[jira] [Resolved] (CB-10372) Checkbox checked / Unchecked Very difficult

2016-01-18 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-10372.
---
Resolution: Incomplete

This is not a Cordova API problem. 

> Checkbox checked / Unchecked Very difficult
> ---
>
> Key: CB-10372
> URL: https://issues.apache.org/jira/browse/CB-10372
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova for IOS
>Reporter: akash
>  Labels: sas
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> Cordova for IOS 
> I have successfully created project in android and same is working fine, but 
> same code nt working properly in cordova IOS.
> For Eg,
> 1. Checkbox check / uncheck become difficult for the user.
> 2. How to handle datepicker



--
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-10372) Checkbox checked / Unchecked Very difficult

2016-01-18 Thread akash (JIRA)

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

akash commented on CB-10372:


Same is working fine in Cordova Android, the problem is only with cordova IOS

> Checkbox checked / Unchecked Very difficult
> ---
>
> Key: CB-10372
> URL: https://issues.apache.org/jira/browse/CB-10372
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova for IOS
>Reporter: akash
>  Labels: sas
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> Cordova for IOS 
> I have successfully created project in android and same is working fine, but 
> same code nt working properly in cordova IOS.
> For Eg,
> 1. Checkbox check / uncheck become difficult for the user.
> 2. How to handle datepicker



--
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-10369) Added getVideo() feature with thumbnail creation

2016-01-18 Thread Tanase Butcaru (JIRA)

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

Tanase Butcaru commented on CB-10369:
-

As I said in the PR description, I haven't developed any native apps (android 
nor ios), but I really needed this feature in my project so I made it myself as 
I couldn't find a plugin for video recording with default camera app.
I'm building my app for Android & iOS so I'll try to port this feature to iOS 
too in the following days, although I don't know how fast will go (Java looks 
easier than Obj.C).
As for other platforms, I don't intent to port this in the near feature because 
I don't own all required devices & most of all I don't build apps for other 
platforms.

Also, I would like to implement the Thumbnail feature for getPicture() too. I 
build it as a standalone function so it can be used for getPicture without 
changing the getVideo behavior.

> Added getVideo() feature with thumbnail creation
> 
>
> Key: CB-10369
> URL: https://issues.apache.org/jira/browse/CB-10369
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin Camera
>Reporter: Tanase Butcaru
>  Labels: Android, features
>
> I've implemented the +getVideo()+ function for cordova-plugin-camera which 
> gives the user the ability to record a video with default camera app.
> Optionally, this feature can create a thumbnail for the recorded video.
> Full description and PR can be found in the external issue URL.



--
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-10304) GlobalizationProxy is undefined on WP8.1

2016-01-18 Thread Sergey Grebnov (JIRA)

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

Sergey Grebnov updated CB-10304:

Labels: WP8.1 Windows triaged wfc  (was: triaged wfc)

> GlobalizationProxy is undefined on WP8.1
> 
>
> Key: CB-10304
> URL: https://issues.apache.org/jira/browse/CB-10304
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Globalization
>Affects Versions: 4.1.0
>Reporter: Geoffrey Lalloué
>  Labels: WP8.1, Windows, triaged, wfc
>
> When i launch my Windows phone 8.1 app using cordova, i have this error : 
> 'GlobalizationProxy' is undefined.
> This make reference to this line on GlobalizationProxy.js :
> (function init() {
> GlobalizationProxy.GlobalizationProxy.setLocale(locale);
> })();
> If i comment this line, app works.
> I'm using :
> Cordova 5.3.3
> cordova-windows : 4.1.0
> Globalization plugin : 1.0.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] [Updated] (CB-5708) [wp]globalization.stringToDate return month error

2016-01-18 Thread Sergey Grebnov (JIRA)

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

Sergey Grebnov updated CB-5708:
---
Labels: Triaged WP8.1  (was: )

> [wp]globalization.stringToDate return month error  
> ---
>
> Key: CB-5708
> URL: https://issues.apache.org/jira/browse/CB-5708
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Globalization
>Affects Versions: 3.2.0
>Reporter: puchen
>  Labels: Triaged, WP8.1
>
> globalization.stringToDate Returns month should form 0 to 11;
> wp Returns month is form 1 to 12.



--
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-10372) Checkbox checked / Unchecked Very difficult

2016-01-18 Thread akash (JIRA)

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

akash commented on CB-10372:


Resolved

> Checkbox checked / Unchecked Very difficult
> ---
>
> Key: CB-10372
> URL: https://issues.apache.org/jira/browse/CB-10372
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
> Environment: Cordova for IOS
>Reporter: akash
>  Labels: sas
>   Original Estimate: 72h
>  Remaining Estimate: 72h
>
> Cordova for IOS 
> I have successfully created project in android and same is working fine, but 
> same code nt working properly in cordova IOS.
> For Eg,
> 1. Checkbox check / uncheck become difficult for the user.
> 2. How to handle datepicker



--
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-8396) Add AutoHideSplashScreen logic to Android's Splashscreen

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-8396:


Github user daserge commented on the pull request:


https://github.com/apache/cordova-plugin-splashscreen/pull/48#issuecomment-172761068
  
@tfitschen, thanks for your contribution!
This has been included into #74, could you please close the PR?


> Add AutoHideSplashScreen logic to Android's Splashscreen
> 
>
> Key: CB-8396
> URL: https://issues.apache.org/jira/browse/CB-8396
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, Plugin SplashScreen
>Affects Versions: Master
> Environment: Android 5.0.1 emulator. 
>Reporter: Tom A
>  Labels: android
>
> In config.xml I've set:
> {code:title=config.xml|borderStyle=solid}
> `
> {code}
> This has no effect on the Android platform. Splash screen autohides after 3 
> seconds (the default SplashScreenDelay).
> Tested on Android 5.0.1.
> If I look at the code here 
> [https://github.com/apache/cordova-plugin-splashscreen/blob/master/src/android/SplashScreen.java]
>  I'd expect to see something like this somewhere: 
> {code:title=SplashScreen.java|borderStyle=solid}
> preferences.getBoolean("AutoHideSplashScreen", false);
> {code}
> Maybe this has something to do with it?
> If you need any more info, please let me know.



--
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-10379) Update splashscreen node package to 3.1.0

2016-01-18 Thread Nick Adriaenssens (JIRA)

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

Nick Adriaenssens commented on CB-10379:


+1

> Update splashscreen node package to 3.1.0
> -
>
> Key: CB-10379
> URL: https://issues.apache.org/jira/browse/CB-10379
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Reporter: Sven Tobback
>
> The node package of the splashscreen plugin still refers to version 3.0.0 
> while 3.1.0 is available: 
> https://www.npmjs.com/package/cordova-plugin-splashscreen.
> Kind Regards,
> Sven T



--
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-10383) Cannot add platform osx (even though it is available)

2016-01-18 Thread Michael P. (JIRA)

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

Michael P. updated CB-10383:

Description: 
{color:green}
MacBook-Pro-2:workspacemobile mp4$ cordova create test
Creating a new cordova project.
MacBook-Pro-2:workspacemobile mp4$ cd test
MacBook-Pro-2:test mp4$ cordova platform add osx
{color}
{color:red}
Error: Failed to fetch platform osx
Probably this is either a connection problem, or platform spec is incorrect.
Check your connection and platform name/version/URL.
Error: No compatible version found: cordova-osx@'>=4.0.0 <4.1.0'
Valid install targets:
["3.4.1"]
{color}



  was:
MacBook-Pro-2:workspacemobile mp4$ cordova create test
Creating a new cordova project.
MacBook-Pro-2:workspacemobile mp4$ cd test
MacBook-Pro-2:test mp4$ cordova platform add osx
Error: Failed to fetch platform osx
Probably this is either a connection problem, or platform spec is incorrect.
Check your connection and platform name/version/URL.
Error: No compatible version found: cordova-osx@'>=4.0.0 <4.1.0'
Valid install targets:
["3.4.1"]




> Cannot add platform osx (even though it is available)
> -
>
> Key: CB-10383
> URL: https://issues.apache.org/jira/browse/CB-10383
> Project: Apache Cordova
>  Issue Type: Bug
>Affects Versions: 5.4.1
> Environment: OS X El Capitan@10.11.2, homebrew@0.9.5, npm@3.3.9
>Reporter: Michael P.
>
> {color:green}
> MacBook-Pro-2:workspacemobile mp4$ cordova create test
> Creating a new cordova project.
> MacBook-Pro-2:workspacemobile mp4$ cd test
> MacBook-Pro-2:test mp4$ cordova platform add osx
> {color}
> {color:red}
> Error: Failed to fetch platform osx
> Probably this is either a connection problem, or platform spec is incorrect.
> Check your connection and platform name/version/URL.
> Error: No compatible version found: cordova-osx@'>=4.0.0 <4.1.0'
> Valid install targets:
> ["3.4.1"]
> {color}



--
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-10383) Cannot add platform osx (even though it is available)

2016-01-18 Thread Michael P. (JIRA)
Michael P. created CB-10383:
---

 Summary: Cannot add platform osx (even though it is available)
 Key: CB-10383
 URL: https://issues.apache.org/jira/browse/CB-10383
 Project: Apache Cordova
  Issue Type: Bug
Affects Versions: 5.4.1
 Environment: OS X El Capitan@10.11.2, homebrew@0.9.5, npm@3.3.9
Reporter: Michael P.


MacBook-Pro-2:workspacemobile mp4$ cordova create test
Creating a new cordova project.
MacBook-Pro-2:workspacemobile mp4$ cd test
MacBook-Pro-2:test mp4$ cordova platform add osx
Error: Failed to fetch platform osx
Probably this is either a connection problem, or platform spec is incorrect.
Check your connection and platform name/version/URL.
Error: No compatible version found: cordova-osx@'>=4.0.0 <4.1.0'
Valid install targets:
["3.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-10299) Cordova-windows 4.3.0 release Jan 11, 2016

2016-01-18 Thread ASF subversion and git services (JIRA)

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

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

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

CB-10299 updated pinned windows version to ~4.3.0


> Cordova-windows 4.3.0 release Jan 11, 2016
> --
>
> Key: CB-10299
> URL: https://issues.apache.org/jira/browse/CB-10299
> Project: Apache Cordova
>  Issue Type: Task
>  Components: Windows
>Reporter: Vladimir Kotikov
>Assignee: Vladimir Kotikov
>  Labels: triaged
>
> Following steps at 
> https://github.com/apache/cordova-coho/blob/master/docs/platforms-release-process.md



--
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-7746) [WP8 & 8.1] AutoHideSplashScreen "false" isn't taken in account

2016-01-18 Thread Nick Adriaenssens (JIRA)

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

Nick Adriaenssens commented on CB-7746:
---

+1

> [WP8 & 8.1] AutoHideSplashScreen "false" isn't taken in account
> ---
>
> Key: CB-7746
> URL: https://issues.apache.org/jira/browse/CB-7746
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 3.6.3
> Environment: Cordova 3.6.3 - WindowsPhone8 & 8.1 - VisualStudio 2013 
> - Windows 8.1 (64)
>Reporter: Nicolas Albert
>  Labels: cordova, splashscreen, wp8
>
> I use the preference:
> 
> With the plugin:
> 
> I want that the splash screen remains until I call 
> "navigator.splashscreen.hide()". That works fine for Android and IOS, but not 
> for WindowsPhone8 (or 8.1) => the splashscreen is visible less than 1 second 
> and doesn't wait the "hide()" call (many seconds later).



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

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



[jira] [Resolved] (CB-9373) Plugman documentation issues

2016-01-18 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov resolved CB-9373.
--
Resolution: Fixed

> Plugman documentation issues
> 
>
> Key: CB-9373
> URL: https://issues.apache.org/jira/browse/CB-9373
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Docs
>Affects Versions: 5.0.0
>Reporter: Jacob Weber
>Priority: Minor
>
> Found a couple issues on the [Using Plugman to Manage 
> Plugins|http://cordova.apache.org/docs/en/5.0.0/plugin_ref_plugman.md.html#Using%20Plugman%20to%20Manage%20Plugins]
>  page:
> 1. Under "Installing Core Plugins", it lists plugin IDs using the new naming 
> format (e.g. cordova-plugin-battery-status). But I can't use plugman to refer 
> to them using this format. For example:
> {code}
> $ plugman info cordova-plugin-battery-status
> 404 Not Found: cordova-plugin-battery-status
> $ plugman info org.apache.cordova.battery-status
> name: org.apache.cordova.battery-status
> version: 0.2.12
> $ plugman -v
> 0.23.3
> $ plugman config get registry
> http://registry.cordova.io
> done
> {code}
> 2. Under "Installing Core Plugins", there's a lot of text like this, that's 
> rendered as invisible HTML tags:
> {code}
> 
> {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-10381) Exception when removing a plugin with a tag

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10381:
-

Github user purplecabbage commented on the pull request:

https://github.com/apache/cordova-windows/pull/140#issuecomment-172676250
  
Thanks! And your change of  to  has made this issue make 
infinitely more sense!


> Exception when removing a plugin with a  tag
> ---
>
> Key: CB-10381
> URL: https://issues.apache.org/jira/browse/CB-10381
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Reporter: Byoungro So
>Assignee: Byoungro So
>
> The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has 
> a  tag.
> It throws an exception EISDIR.
> This is caused by a bug in PluginHandler.js.
> I can fix this bug.



--
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-8045) Android test for windows failed to deploy app

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-8045:


[~nikhilkh] Is this still an issue?

> Android test for windows failed to deploy app
> -
>
> Key: CB-8045
> URL: https://issues.apache.org/jira/browse/CB-8045
> Project: Apache Cordova
>  Issue Type: Test
>  Components: Android, Medic
>Reporter: Maria Bukharina
>
> Repo steps:
> 1. Set up medic configuration
> 2. Create android emutlator
> 3. Run AndroidWin build
> Deploy step failed:]
>  [ANDROID] [DEPLOY] Mobile-spec timed out on emulator-5554, continuing. 
> (Android__master__1416321767)
> Android test prepare failed
> program finished with exit code 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-10381) Exception when removing a plugin with a tag

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10381:
-

GitHub user bso-intel opened a pull request:

https://github.com/apache/cordova-windows/pull/140

CB-10381 fix the bug when removing a plugin with a  tag

I fixed a simple bug that caused an exception EISDIR when removing a plugin 
that includes a  tag.
PluginHandler.js should have passed the project file instead of the plugin 
directory.

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

$ git pull https://github.com/bso-intel/cordova-windows CB-10381

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

https://github.com/apache/cordova-windows/pull/140.patch

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

This closes #140


commit d5079b99bdb0ab5fe7d75ed13853de762e0cf254
Author: Byoungro So 
Date:   2016-01-18T22:02:40Z

CB-10381 fix the bug when removing a plugin with a  tag




> Exception when removing a plugin with a  tag
> ---
>
> Key: CB-10381
> URL: https://issues.apache.org/jira/browse/CB-10381
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Reporter: Byoungro So
>Assignee: Byoungro So
>
> The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has 
> a  tag.
> It throws an exception EISDIR.
> This is caused by a bug in PluginHandler.js.
> I can fix this bug.



--
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-10381) Exception when removing a plugin with a tag

2016-01-18 Thread Byoungro So (JIRA)

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

Byoungro So updated CB-10381:
-
Description: 
The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has a 
 tag.
It throws an exception EISDIR.
This is caused by a bug in PluginHandler.js.
I can fix this bug.

  was:
The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has a 
 tag.
It throws an exception EISDIR.
This is caused by a bug in PluginHandler.js.
I can fix this bug.


> Exception when removing a plugin with a  tag
> ---
>
> Key: CB-10381
> URL: https://issues.apache.org/jira/browse/CB-10381
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Reporter: Byoungro So
>Assignee: Byoungro So
>
> The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has 
> a  tag.
> It throws an exception EISDIR.
> This is caused by a bug in PluginHandler.js.
> I can fix this bug.



--
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-10381) Exception when removing a plugin with a tag

2016-01-18 Thread Byoungro So (JIRA)

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

Byoungro So updated CB-10381:
-
Summary: Exception when removing a plugin with a  tag  (was: 
Exception when removing a plugin with a  tag)

> Exception when removing a plugin with a  tag
> ---
>
> Key: CB-10381
> URL: https://issues.apache.org/jira/browse/CB-10381
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Reporter: Byoungro So
>Assignee: Byoungro So
>
> The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has 
> a  tag.
> It throws an exception EISDIR.
> This is caused by a bug in PluginHandler.js.
> I can fix this bug.



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

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



[jira] [Resolved] (CB-10378) Viewport dimensions swapped after app restore in Android

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser resolved CB-10378.
-
Resolution: Won't Fix

> Viewport dimensions swapped after app restore in Android
> 
>
> Key: CB-10378
> URL: https://issues.apache.org/jira/browse/CB-10378
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 5.4.1
> Environment: Cordova Android 4.1.1 or 5.0.0
>Reporter: Mathijs
>
> h1. Steps to reproduce
> 1. Assure {{}} in 
> {{config.xml}}
> 2. (Clean) start the app
> 3. Press the back button
> 4. Open the app switcher
> 5. Select the app
> h1. Expected behaviour
> As the app is started the measurements.js code dumps {{screen.availWidth}} 
> and {{screen.availHeight}}. When restoring it after pressing the back button, 
> the app initializes again and the same values should be displayed.
> h1. Perceived behaviour
> The values for {{screen.availWidth}} and {{screen.availHeight}} are swapped. 
> This causes the app's viewport to be renedered at the wrong scale.



--
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-10378) Viewport dimensions swapped after app restore in Android

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-10378:
-

I can reproduce this with both Crosswalk and the Android WebView, but I think 
this is a Chromium/Android bug that we really have very little control over, or 
is something that would be technically expensive to fix.

It seems that when you restore an application, the WebView is rendered in 
portrait, then resized to landscape and the screen.availWidth and 
screen.availHeight values aren't updated.  This is really irritating, but 
without messing with the WebView initialization, we can't do anything about 
this.  I think forcing the WebView to reset its state after we restore it would 
cause a lot more problems, which is why I don't want to do it in this case.

I would recommend using window.innerHeight and window.innerWidth, since unlike 
screen.width or screen.availWidth.  I don't see any distortions on the screen 
suggesting that the application viewport is rendered a the wrong scale, so it 
appears that it's just the values that are screwed up.



> Viewport dimensions swapped after app restore in Android
> 
>
> Key: CB-10378
> URL: https://issues.apache.org/jira/browse/CB-10378
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 5.4.1
> Environment: Cordova Android 4.1.1 or 5.0.0
>Reporter: Mathijs
>
> h1. Steps to reproduce
> 1. Assure {{}} in 
> {{config.xml}}
> 2. (Clean) start the app
> 3. Press the back button
> 4. Open the app switcher
> 5. Select the app
> h1. Expected behaviour
> As the app is started the measurements.js code dumps {{screen.availWidth}} 
> and {{screen.availHeight}}. When restoring it after pressing the back button, 
> the app initializes again and the same values should be displayed.
> h1. Perceived behaviour
> The values for {{screen.availWidth}} and {{screen.availHeight}} are swapped. 
> This causes the app's viewport to be renedered at the wrong scale.



--
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-9373) Plugman documentation issues

2016-01-18 Thread Andrey Kurdyumov (JIRA)

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

Andrey Kurdyumov commented on CB-9373:
--

Yes. Issue could be closed.

> Plugman documentation issues
> 
>
> Key: CB-9373
> URL: https://issues.apache.org/jira/browse/CB-9373
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Docs
>Affects Versions: 5.0.0
>Reporter: Jacob Weber
>Priority: Minor
>
> Found a couple issues on the [Using Plugman to Manage 
> Plugins|http://cordova.apache.org/docs/en/5.0.0/plugin_ref_plugman.md.html#Using%20Plugman%20to%20Manage%20Plugins]
>  page:
> 1. Under "Installing Core Plugins", it lists plugin IDs using the new naming 
> format (e.g. cordova-plugin-battery-status). But I can't use plugman to refer 
> to them using this format. For example:
> {code}
> $ plugman info cordova-plugin-battery-status
> 404 Not Found: cordova-plugin-battery-status
> $ plugman info org.apache.cordova.battery-status
> name: org.apache.cordova.battery-status
> version: 0.2.12
> $ plugman -v
> 0.23.3
> $ plugman config get registry
> http://registry.cordova.io
> done
> {code}
> 2. Under "Installing Core Plugins", there's a lot of text like this, that's 
> rendered as invisible HTML tags:
> {code}
> 
> {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-10381) Exception when removing a plugin with a tag

2016-01-18 Thread Byoungro So (JIRA)
Byoungro So created CB-10381:


 Summary: Exception when removing a plugin with a  tag
 Key: CB-10381
 URL: https://issues.apache.org/jira/browse/CB-10381
 Project: Apache Cordova
  Issue Type: Bug
  Components: Windows
Reporter: Byoungro So
Assignee: Byoungro So


The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has a 
 tag.
It throws an exception EISDIR.
This is caused by a bug in PluginHandler.js.
I can fix this bug.



--
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-6727) build.xml in Android SDK directory is not found when new SDK installed or project moved to another computer

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-6727:
---
Assignee: (was: Joe Bowser)

> build.xml in Android SDK directory is not found when new SDK installed or 
> project moved to another computer
> ---
>
> Key: CB-6727
> URL: https://issues.apache.org/jira/browse/CB-6727
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Android, CLI
>Affects Versions: 3.4.0
> Environment: Windows 8.1 (possibly other operating systems as well)
>Reporter: Ceyhun Can ÜLKER
>  Labels: build
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> When I moved my project to another computer my cordova project stopped 
> building. Error was due to the imported ant buildfile of Android SDK was not 
> found. I saw that local.properties file in platforms/android folder contains 
> a fixed path, and thought that if I comment it out, sdk.dir would be taken 
> from environment; but it wasn't the case. After extensive searching and 
> looking through verbose output, I found out that platforms/android/CordovaLib 
> contains another properties file. After changing the path there problem 
> solved.
> My suggestion to this problem would be that, since these are generated file 
> and not really meant to be changed, defaults should remain in those files but 
> they should be overridden by environment variables. I guess this would solve 
> this portability issue with respect to development environment.



--
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-7173) deleteDefaultResource fails to delete resources

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-7173:
---
 Labels: Android  (was: )
Component/s: (was: CLI)
 (was: Android)

> deleteDefaultResource fails to delete resources
> ---
>
> Key: CB-7173
> URL: https://issues.apache.org/jira/browse/CB-7173
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 3.5.0
> Environment: Windows
>Reporter: Remco Mokveld
>  Labels: Android
>
> in 
> https://github.com/apache/cordova-lib/blob/master/cordova-lib/src/cordova/metadata/android_parser.js
>  the function deleteDefaultResources fails because it is trying to delete 
> drawable-{density}/{name} 
> from the current working directory instead of the android/res directory. 
> Fix: change android_parser.js:86 from 
> var template = path.join(filename, name);
> to
> var template = path.join(res, filename, name);
> Also resources from the drawable directory are never deleted. because it does 
> not contain the string 'drawable-'



--
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-10381) Exception when removing a plugin with a tag

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10381:
-

Github user purplecabbage commented on the pull request:

https://github.com/apache/cordova-windows/pull/140#issuecomment-172667998
  
Thanks for the fix!
Can you please provide a failing test that now passes, or at least a 
specific list of repro steps?
I am unclear on what exactly it means to include a tag in a plugin ...


> Exception when removing a plugin with a  tag
> ---
>
> Key: CB-10381
> URL: https://issues.apache.org/jira/browse/CB-10381
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Reporter: Byoungro So
>Assignee: Byoungro So
>
> The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has 
> a  tag.
> It throws an exception EISDIR.
> This is caused by a bug in PluginHandler.js.
> I can fix this bug.



--
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-10381) Exception when removing a plugin with a tag

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10381:
-

Github user bso-intel commented on the pull request:

https://github.com/apache/cordova-windows/pull/140#issuecomment-172675243
  
Hi @purplecabbage,

Here is how you can reproduce the issue:
1. cordova platform add windows
2. cordova plugin add cordova-sqlite-storage
3. cordova plugin rm cordova-sqlite-storage

{code}
[CB-10381] cordova plugin add cordova-sqlite-storage
Fetching plugin "cordova-sqlite-storage" via npm
Installing "cordova-sqlite-storage" for windows
[CB-10381] cordova plugin rm cordova-sqlite-storage
Uninstalling cordova-sqlite-storage from windows
Error: Uh oh!
EISDIR, illegal operation on a directory
{code}


> Exception when removing a plugin with a  tag
> ---
>
> Key: CB-10381
> URL: https://issues.apache.org/jira/browse/CB-10381
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Reporter: Byoungro So
>Assignee: Byoungro So
>
> The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has 
> a  tag.
> It throws an exception EISDIR.
> This is caused by a bug in PluginHandler.js.
> I can fix this bug.



--
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-10369) Added getVideo() feature with thumbnail creation

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-10369:

Labels: Android features  (was: features)

> Added getVideo() feature with thumbnail creation
> 
>
> Key: CB-10369
> URL: https://issues.apache.org/jira/browse/CB-10369
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin Camera
>Reporter: Tanase Butcaru
>  Labels: Android, features
>
> I've implemented the +getVideo()+ function for cordova-plugin-camera which 
> gives the user the ability to record a video with default camera app.
> Optionally, this feature can create a thumbnail for the recorded video.
> Full description and PR can be found in the external issue URL.



--
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-10380) Wrong device uuid

2016-01-18 Thread Mariusz Mackiewicz (JIRA)
Mariusz Mackiewicz created CB-10380:
---

 Summary: Wrong device uuid
 Key: CB-10380
 URL: https://issues.apache.org/jira/browse/CB-10380
 Project: Apache Cordova
  Issue Type: Bug
 Environment: Visual Studio 2015 community, Cordova 5.33, Device plugin 
v1.1.0, Samsung Galaxy Tab 4, Android 4.4.2
Reporter: Mariusz Mackiewicz
Priority: Critical


Plugin returns wrong device uuid - e0327a3374a4d64e, 
when original is -6B42-9C07--A4E69A37

all device object properties:
available: true
cordova: "4.1.1"
isVirtual: false
manufacturer: "samsung"
model: "SM-T535"
platform: "Android"
serial: "2730bac9"
uuid: "e0327a3374a4d64e"
version: "4.4.2"



--
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-10380) Wrong device uuid

2016-01-18 Thread Mariusz Mackiewicz (JIRA)

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

Mariusz Mackiewicz updated CB-10380:

Component/s: Plugin Device

> Wrong device uuid
> -
>
> Key: CB-10380
> URL: https://issues.apache.org/jira/browse/CB-10380
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Device
> Environment: Visual Studio 2015 community, Cordova 5.33, Device 
> plugin v1.1.0, Samsung Galaxy Tab 4, Android 4.4.2
>Reporter: Mariusz Mackiewicz
>Priority: Critical
>
> Plugin returns wrong device uuid - e0327a3374a4d64e, 
> when original is -6B42-9C07--A4E69A37
> all device object properties:
> available: true
> cordova: "4.1.1"
> isVirtual: false
> manufacturer: "samsung"
> model: "SM-T535"
> platform: "Android"
> serial: "2730bac9"
> uuid: "e0327a3374a4d64e"
> version: "4.4.2"



--
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-10380) Wrong device uuid

2016-01-18 Thread Mariusz Mackiewicz (JIRA)

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

Mariusz Mackiewicz updated CB-10380:

Description: 
Plugin returns wrong device uuid - e0327a3374a4d64e, 
when original is -6B42-9C07--A4E69A37

all device object properties:

available: true
cordova: "4.1.1"
isVirtual: false
manufacturer: "samsung"
model: "SM-T535"
platform: "Android"
serial: "2730bac9"
uuid: "e0327a3374a4d64e"
version: "4.4.2"

  was:
Plugin returns wrong device uuid - e0327a3374a4d64e, 
when original is -6B42-9C07--A4E69A37

all device object properties:
available: true
cordova: "4.1.1"
isVirtual: false
manufacturer: "samsung"
model: "SM-T535"
platform: "Android"
serial: "2730bac9"
uuid: "e0327a3374a4d64e"
version: "4.4.2"


> Wrong device uuid
> -
>
> Key: CB-10380
> URL: https://issues.apache.org/jira/browse/CB-10380
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Device
> Environment: Visual Studio 2015 community, Cordova 5.33, Device 
> plugin v1.1.0, Samsung Galaxy Tab 4, Android 4.4.2
>Reporter: Mariusz Mackiewicz
>Priority: Critical
>
> Plugin returns wrong device uuid - e0327a3374a4d64e, 
> when original is -6B42-9C07--A4E69A37
> all device object properties:
> available: true
> cordova: "4.1.1"
> isVirtual: false
> manufacturer: "samsung"
> model: "SM-T535"
> platform: "Android"
> serial: "2730bac9"
> uuid: "e0327a3374a4d64e"
> version: "4.4.2"



--
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-9182) WebResourceResponse is being deprecated, and needs to be updated

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-9182:


I'm tempted to take the code from CB-10365 and use that to work around this 
issue.  Thoughts?

> WebResourceResponse is being deprecated, and needs to be updated
> 
>
> Key: CB-9182
> URL: https://issues.apache.org/jira/browse/CB-9182
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Joe Bowser
>
> Found today when looking at SystemWebView:
> http://developer.android.com/reference/android/webkit/WebViewClient.html#shouldInterceptRequest(android.webkit.WebView,
>  android.webkit.WebResourceRequest)



--
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-10381) Exception when removing a plugin with a tag

2016-01-18 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10381:
-

Github user bso-intel commented on the pull request:

https://github.com/apache/cordova-windows/pull/140#issuecomment-172667498
  
Hi @vladimir-kotikov 
Could you review this pull request?
Thanks.


> Exception when removing a plugin with a  tag
> ---
>
> Key: CB-10381
> URL: https://issues.apache.org/jira/browse/CB-10381
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Reporter: Byoungro So
>Assignee: Byoungro So
>
> The latest Cordova-windows (4.3.0) has a bug when removing a plugin that has 
> a  tag.
> It throws an exception EISDIR.
> This is caused by a bug in PluginHandler.js.
> I can fix this bug.



--
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-9734) Potentially Insecure use of buggy RNG in SSL on Android

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-9734:
---
 Labels: Android security  (was: security)
Component/s: (was: Android)

> Potentially Insecure use of buggy RNG in SSL on Android
> ---
>
> Key: CB-9734
> URL: https://issues.apache.org/jira/browse/CB-9734
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin File Transfer
> Environment: Android
>Reporter: Richard B Knoll
>  Labels: Android, security
>
> The linter for Android picked up an error in the way the SSLContext is 
> initialized for the "all trusting" trust manager in FileTransfer.java. For 
> Android 4.3 and below, java.security.SecureRandom produces insecure RNG. See 
> http://android-developers.blogspot.com/2013/08/some-securerandom-thoughts.html
>  for an explanation and a fix. I am not sure how big an issue this actually 
> is because it appears to only affect code that is used for development 
> purposes.



--
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-10369) Added getVideo() feature with thumbnail creation

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-10369:

Component/s: (was: Android)
 Plugin Camera

What's the story on iOS and other platforms? 

> Added getVideo() feature with thumbnail creation
> 
>
> Key: CB-10369
> URL: https://issues.apache.org/jira/browse/CB-10369
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Plugin Camera
>Reporter: Tanase Butcaru
>  Labels: features
>
> I've implemented the +getVideo()+ function for cordova-plugin-camera which 
> gives the user the ability to record a video with default camera app.
> Optionally, this feature can create a thumbnail for the recorded video.
> Full description and PR can be found in the external issue URL.



--
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] [Assigned] (CB-7371) [Android] App crashes after phone language change

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser reassigned CB-7371:
--

Assignee: Joe Bowser  (was: Martin Gonzalez)

> [Android] App crashes after phone language change
> -
>
> Key: CB-7371
> URL: https://issues.apache.org/jira/browse/CB-7371
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.5.0
> Environment: 4.2.2 (Jelly-Bean)
> 4.4.2 (KitKat)
>Reporter: Martin Gonzalez
>Assignee: Joe Bowser
>  Labels: android, crash
> Fix For: 3.7.0
>
>
> After switching device language on android, the app will fails to reload 
> scenario:
> 1. Create new app 
> 2. open it and exit with the home button
> 3.Switch device language to or any other
> 4. Resume the app
> Expected result :
> the app should run
> Actual result:
> app crashes on first load
> Log:
> 07-28 16:24:10.018: D/CordovaActivity(25402): CordovaActivity.onDestroy()
> 07-28 16:24:10.028: D/CordovaWebView(25402): >>> loadUrlNow()
> 07-28 16:24:10.038: I/CordovaLog(25402): Changing log level to DEBUG(3)
> 07-28 16:24:10.038: I/CordovaLog(25402): Found start page location: 
> cdvtests/index.html
> 07-28 16:24:10.038: D/CordovaActivity(25402): CordovaActivity.onCreate()
> 07-28 16:24:10.048: D/CordovaActivity(25402): CordovaActivity.init()
> 07-28 16:24:10.058: D/CordovaWebView(25402): >>> 
> loadUrl(file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.068: D/CordovaWebView(25402): >>> loadUrlNow()
> 07-28 16:24:10.068: I/CordovaLog(25402): Found start page location: 
> cdvtests/index.html
> 07-28 16:24:10.068: D/CordovaActivity(25402): Resuming the App
> 07-28 16:24:10.068: D/CordovaActivity(25402): CB-3064: The errorUrl is null
> 07-28 16:24:10.078: D/CordovaWebViewClient(25402): onPageStarted(about:blank)
> 07-28 16:24:10.078: D/CordovaActivity(25402): 
> onMessage(onPageStarted,about:blank)
> 07-28 16:24:10.078: D/CordovaWebViewClient(25402): onPageFinished(about:blank)
> 07-28 16:24:10.078: D/CordovaActivity(25402): 
> onMessage(onPageFinished,about:blank)
> 07-28 16:24:10.078: D/CordovaActivity(25402): onMessage(exit,null)
> 07-28 16:24:10.088: D/CordovaWebViewClient(25402): 
> onPageStarted(file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.088: D/CordovaActivity(25402): 
> onMessage(onPageStarted,file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.108: D/CordovaActivity(25402): Paused the application!
> 07-28 16:24:10.108: D/CordovaWebView(25402): Handle the pause
> 07-28 16:24:10.148: D/CordovaActivity(25402): CordovaActivity.onDestroy()
> 07-28 16:24:10.148: D/CordovaWebView(25402): >>> loadUrlNow()
> 07-28 16:24:10.158: D/CordovaWebViewClient(25402): 
> onPageFinished(file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.158: D/CordovaActivity(25402): 
> onMessage(onPageFinished,file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.168: D/CordovaWebViewClient(25402): onPageStarted(about:blank)
> 07-28 16:24:10.168: D/CordovaActivity(25402): 
> onMessage(onPageStarted,about:blank)
> 07-28 16:24:10.188: D/CordovaWebViewClient(25402): onPageFinished(about:blank)
> 07-28 16:24:10.188: D/CordovaActivity(25402): 
> onMessage(onPageFinished,about:blank)
> 07-28 16:24:10.188: D/CordovaActivity(25402): onMessage(exit,null)
> 07-28 16:24:12.168: D/CordovaActivity(25402): onMessage(spinner,stop)
> 07-28 16:24:12.188: D/CordovaActivity(25402): onMessage(spinner,stop)



--
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-7371) [Android] App crashes after phone language change

2016-01-18 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-7371:


I can't reproduce that with Android 6.0 on master.  The bad news is that after 
I do this, my whole phone runs like dogcrap and I have to restart the damn 
thing.  I'm going to test this on different devices at home later to see if 
this is still an issue.

> [Android] App crashes after phone language change
> -
>
> Key: CB-7371
> URL: https://issues.apache.org/jira/browse/CB-7371
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 3.5.0
> Environment: 4.2.2 (Jelly-Bean)
> 4.4.2 (KitKat)
>Reporter: Martin Gonzalez
>Assignee: Martin Gonzalez
>  Labels: android, crash
> Fix For: 3.7.0
>
>
> After switching device language on android, the app will fails to reload 
> scenario:
> 1. Create new app 
> 2. open it and exit with the home button
> 3.Switch device language to or any other
> 4. Resume the app
> Expected result :
> the app should run
> Actual result:
> app crashes on first load
> Log:
> 07-28 16:24:10.018: D/CordovaActivity(25402): CordovaActivity.onDestroy()
> 07-28 16:24:10.028: D/CordovaWebView(25402): >>> loadUrlNow()
> 07-28 16:24:10.038: I/CordovaLog(25402): Changing log level to DEBUG(3)
> 07-28 16:24:10.038: I/CordovaLog(25402): Found start page location: 
> cdvtests/index.html
> 07-28 16:24:10.038: D/CordovaActivity(25402): CordovaActivity.onCreate()
> 07-28 16:24:10.048: D/CordovaActivity(25402): CordovaActivity.init()
> 07-28 16:24:10.058: D/CordovaWebView(25402): >>> 
> loadUrl(file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.068: D/CordovaWebView(25402): >>> loadUrlNow()
> 07-28 16:24:10.068: I/CordovaLog(25402): Found start page location: 
> cdvtests/index.html
> 07-28 16:24:10.068: D/CordovaActivity(25402): Resuming the App
> 07-28 16:24:10.068: D/CordovaActivity(25402): CB-3064: The errorUrl is null
> 07-28 16:24:10.078: D/CordovaWebViewClient(25402): onPageStarted(about:blank)
> 07-28 16:24:10.078: D/CordovaActivity(25402): 
> onMessage(onPageStarted,about:blank)
> 07-28 16:24:10.078: D/CordovaWebViewClient(25402): onPageFinished(about:blank)
> 07-28 16:24:10.078: D/CordovaActivity(25402): 
> onMessage(onPageFinished,about:blank)
> 07-28 16:24:10.078: D/CordovaActivity(25402): onMessage(exit,null)
> 07-28 16:24:10.088: D/CordovaWebViewClient(25402): 
> onPageStarted(file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.088: D/CordovaActivity(25402): 
> onMessage(onPageStarted,file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.108: D/CordovaActivity(25402): Paused the application!
> 07-28 16:24:10.108: D/CordovaWebView(25402): Handle the pause
> 07-28 16:24:10.148: D/CordovaActivity(25402): CordovaActivity.onDestroy()
> 07-28 16:24:10.148: D/CordovaWebView(25402): >>> loadUrlNow()
> 07-28 16:24:10.158: D/CordovaWebViewClient(25402): 
> onPageFinished(file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.158: D/CordovaActivity(25402): 
> onMessage(onPageFinished,file:///android_asset/www/cdvtests/index.html)
> 07-28 16:24:10.168: D/CordovaWebViewClient(25402): onPageStarted(about:blank)
> 07-28 16:24:10.168: D/CordovaActivity(25402): 
> onMessage(onPageStarted,about:blank)
> 07-28 16:24:10.188: D/CordovaWebViewClient(25402): onPageFinished(about:blank)
> 07-28 16:24:10.188: D/CordovaActivity(25402): 
> onMessage(onPageFinished,about:blank)
> 07-28 16:24:10.188: D/CordovaActivity(25402): onMessage(exit,null)
> 07-28 16:24:12.168: D/CordovaActivity(25402): onMessage(spinner,stop)
> 07-28 16:24:12.188: D/CordovaActivity(25402): onMessage(spinner,stop)



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