[jira] [Created] (CB-10204) getCurrentPosition options are currently required on Android

2015-12-15 Thread Timo Salola (JIRA)
Timo Salola created CB-10204:


 Summary: getCurrentPosition options are currently required on 
Android
 Key: CB-10204
 URL: https://issues.apache.org/jira/browse/CB-10204
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin Geolocation
 Environment: Cordova 3.5.0, Plugin Geolocation 2.0.0
Reporter: Timo Salola
Priority: Minor


In the latest release there was created separate JS file for android. In 
getCurrentPosition it does not verify that options are given resulting 
javascript error when trying to access undefined as an array at 
www/android/geolocation.js lines 33 and 34:
{code:javascript}
getCurrentPosition: function(success, error, args) {
var win = function() {
  var geo = 
cordova.require('cordova/modulemapper').getOriginalSymbol(window, 
'navigator.geolocation');
  geo.getCurrentPosition(success, error, {
enableHighAccuracy: args[0],
maximumAge: args[1]
  });
};
exec(win, error, "Geolocation", "getPermission", []);
}
{code}

Workaround this is to give empty array to getCurrentPosition as options:
{code:javascript}
navigator.geolocation.getCurrentPosition(onSuccess, onError, []);
{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-10167) not select multiple image from gallary using cordova

2015-12-15 Thread Tejal Pandya (JIRA)

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

Tejal Pandya commented on CB-10167:
---

I am using html page for cordova android app and select photos using below line:



 i also added imagepicker plugin, camera plugin, media capture plugin if 
necessarily into my android app.

what is solution for select multiple photos either using plugins of cordova or 
using html page.

> not select multiple image from gallary using cordova
> 
>
> Key: CB-10167
> URL: https://issues.apache.org/jira/browse/CB-10167
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, Plugin Camera, Plugin File, Plugin File 
> Transfer, Plugin Media Capture
>Affects Versions: 5.4.0
> Environment: Android (mobile application platform)
>Reporter: Tejal Pandya
>  Labels: github-import
> Fix For: 5.4.0
>
>   Original Estimate: 20m
>  Remaining Estimate: 20m
>
> I am working on cordova 5.4.0 . I am using plugins camera, file ,file 
> transfer , media-capture for multiple file selection through gallary. But its 
> possible with capture by camera using example multiimageselector3.  But not 
> for gallary (In demo multiimageselector2. This demo not working). i am using 
> html file for select image and add above plugins. But not work right now. 
> Give me such solution for multiple imageselection using gallary. 



--
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-9254) update_cordova_subproject command for cordova-ios 4.0.0-dev results in a build error

2015-12-15 Thread JIRA

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

Frederico Costa Galvão commented on CB-9254:


Yeah I saw the commit, but still, right after I upgraded from cordova-ios@3.9.1 
to cordova-ios@4.0.0 using the exact same strategy recomended at the release 
blog post, I got the *No visible @interface for 'CDVViewController' declares 
the selector 'webViewDidFinishLoad:'* error, and had to remove, and then add 
ios to have a proper "upgrade". I don't know how it happened without the script 
mentioned, but it did. I did not upgrade to 4.0.0-dev, but to the final 
version, so that's out of question.


> update_cordova_subproject command for cordova-ios 4.0.0-dev results in a 
> build error
> 
>
> Key: CB-9254
> URL: https://issues.apache.org/jira/browse/CB-9254
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.0.0
> Environment: Mac OS X Yosemite 10.10.3, Xcode 6.3.1, iOS 8
>Reporter: Inderpreet
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.x
>
> When updating existing iOS sub project reference to 4.0.0-dev version using 
> update_cordova_subproject command as mentioned in ReadMe file 
> (https://github.com/apache/cordova-ios/blob/4.0.x/README.md) we get a build 
> error in Xcode - _Error : No visible @interface for 'CDVViewController' 
> declares the selector 'webViewDidFinishLoad:'_
> In order to resolve it, we at our end have updated our source code 
> MainViewController.m class by replacing it with the file present in templates 
> folder 
> cordova-ios/bin/templates/project/__PROJECT_NAME__/Classes/MainViewController.m
>  
> (https://github.com/apache/cordova-ios/raw/4.0.x/bin/templates/project/__PROJECT_NAME__/Classes/MainViewController.m)



--
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-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Christian Gelinek (JIRA)

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

Christian Gelinek closed CB-10199.
--
   Resolution: Not A Problem
Fix Version/s: 5.4.1

Even though the target API level in project.properties (22) does not match the 
"minSdkVersion" entry in config.xml (19), the generated APK seems to run 
successfully on an Android 4.4 device.

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
> Fix For: 5.4.1
>
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



--
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-10156) iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin

2015-12-15 Thread Clark (JIRA)

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

Clark commented on CB-10156:


This is my sample.

https://github.com/Clark159/clark159.github.io/raw/master/_posts/%5BCordova%5D/%5BCordova%5D%20Plugin%E8%A3%A1%E4%BD%BF%E7%94%A8iOS%20framework/clk-cordova-sample.zip

and this is create document for sample.

https://github.com/Clark159/clark159.github.io/blob/master/_posts/%5BCordova%5D/%5BCordova%5D%20Plugin%E8%A3%A1%E4%BD%BF%E7%94%A8iOS%20framework/2015-12-09-%5BCordova%5D%20Plugin%E8%A3%A1%E4%BD%BF%E7%94%A8iOS%20framework.md

> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> ---
>
> Key: CB-10156
> URL: https://issues.apache.org/jira/browse/CB-10156
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.4.1
>Reporter: Clark
>Assignee: Shazron Abdullah
>  Labels: cordova-6.0.0
>
> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> 
> Error :
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1\Plugins\myPlugin\"",
> );
> 
> Right:
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1/Plugins/myPlugin\"",
> );



--
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-10185) Update CordovaLib.xcodeproj to recommended settings in Xcode 7.2

2015-12-15 Thread ASF subversion and git services (JIRA)

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

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

Commit c1448ff9ac24f8155c336c081d6759e9f7ba83d7 in cordova-ios's branch 
refs/heads/4.0.x from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=c1448ff ]

CB-10185 - Update CordovaLib.xcodeproj to recommended settings in Xcode 7.2


> Update CordovaLib.xcodeproj to recommended settings in Xcode 7.2
> 
>
> Key: CB-10185
> URL: https://issues.apache.org/jira/browse/CB-10185
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.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] [Commented] (CB-10203) Cordova-iOS Platform Release Dec 15, 2015

2015-12-15 Thread ASF subversion and git services (JIRA)

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

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

Commit e40a776faad69b1282f912625d90b927ec063f3c in cordova-ios's branch 
refs/heads/4.0.x from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=e40a776 ]

CB-10203 Updated RELEASENOTES and Version for release 4.0.1


> Cordova-iOS Platform Release Dec 15, 2015
> -
>
> Key: CB-10203
> URL: https://issues.apache.org/jira/browse/CB-10203
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>
> 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-10155) DisallowOverscroll not working

2015-12-15 Thread ASF subversion and git services (JIRA)

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

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

Commit 8a187bff65c55e6c0daf67b61c371f03234c2af5 in cordova-ios's branch 
refs/heads/4.0.x from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=8a187bf ]

CB-10155 - DisallowOverscroll not working


> DisallowOverscroll not working
> --
>
> Key: CB-10155
> URL: https://issues.apache.org/jira/browse/CB-10155
> Project: Apache Cordova
>  Issue Type: Bug
>Affects Versions: 5.4.0, 5.4.1
> Environment: cordova-ios 4.0.0
>Reporter: Tom Nonk
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> DisallowOverscroll is not working on iOS9



--
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-10171) WebKit Error after migration to iOS@4.0.0

2015-12-15 Thread ASF subversion and git services (JIRA)

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

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

Commit 444851b9c76139e61ae00053d4f9b970569e4b4d in cordova-ios's branch 
refs/heads/4.0.x from [~shazron]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;h=444851b ]

CB-10171 - WebKit Error after migration to iOS@4.0.0


> WebKit Error after migration to iOS@4.0.0
> -
>
> Key: CB-10171
> URL: https://issues.apache.org/jira/browse/CB-10171
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.0.0
>Reporter: Arch
>Assignee: Shazron Abdullah
>Priority: Critical
>  Labels: cordova-ios-4.0.1
>
> After upgrade to ios@4.0.0 I am getting following error when I click on any 
> links in my application.
> *** WebKit discarded an uncaught exception in the 
> webView:decidePolicyForNavigationAction:request:frame:decisionListener: 
> delegate:  *** -[NSRegularExpression 
> enumerateMatchesInString:options:range:usingBlock:]: nil 



--
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-10167) not select multiple image from gallary using cordova

2015-12-15 Thread Richard B Knoll (JIRA)

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

Richard B Knoll commented on CB-10167:
--

Hey there, thanks for filing an issue! It looks like you are requesting the 
ability to select multiple images at once from the gallery. There is actually 
already a JIRA issue for that, CB-1215. Is that what you are referring to?

> not select multiple image from gallary using cordova
> 
>
> Key: CB-10167
> URL: https://issues.apache.org/jira/browse/CB-10167
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android, Plugin Camera, Plugin File, Plugin File 
> Transfer, Plugin Media Capture
>Affects Versions: 5.4.0
> Environment: Android (mobile application platform)
>Reporter: Tejal Pandya
>  Labels: github-import
> Fix For: 5.4.0
>
>   Original Estimate: 20m
>  Remaining Estimate: 20m
>
> I am working on cordova 5.4.0 . I am using plugins camera, file ,file 
> transfer , media-capture for multiple file selection through gallary. But its 
> possible with capture by camera using example multiimageselector3.  But not 
> for gallary (In demo multiimageselector2. This demo not working). i am using 
> html file for select image and add above plugins. But not work right now. 
> Give me such solution for multiple imageselection using gallary. 



--
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-10203) Cordova-iOS Platform Release Dec 15, 2015

2015-12-15 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-10203:
-

 Summary: Cordova-iOS Platform Release Dec 15, 2015
 Key: CB-10203
 URL: https://issues.apache.org/jira/browse/CB-10203
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Shazron Abdullah
Assignee: Shazron Abdullah


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] [Updated] (CB-10156) iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-10156:
--
Labels: cordova-6.0.0  (was: cordova-6.0.0 cordova-ios-4.0.1)

> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> ---
>
> Key: CB-10156
> URL: https://issues.apache.org/jira/browse/CB-10156
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.4.1
>Reporter: Clark
>Assignee: Shazron Abdullah
>  Labels: cordova-6.0.0
>
> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> 
> Error :
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1\Plugins\myPlugin\"",
> );
> 
> Right:
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1/Plugins/myPlugin\"",
> );



--
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-10156) iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10156:
---

Removing from cordova-ios-4.0.1 release consideration since this is an issue to 
be fixed in the npm module `xcode`.

> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> ---
>
> Key: CB-10156
> URL: https://issues.apache.org/jira/browse/CB-10156
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.4.1
>Reporter: Clark
>Assignee: Shazron Abdullah
>  Labels: cordova-6.0.0
>
> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> 
> Error :
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1\Plugins\myPlugin\"",
> );
> 
> Right:
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1/Plugins/myPlugin\"",
> );



--
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-10156) iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10156:
---

I tried it with the phonegap-facebook-plugin on OS X:
https://github.com/Wizcorp/phonegap-facebook-plugin

{code}
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",

"\"ProjectName/Plugins/phonegap-facebook-plugin\"",
);
{code}

The path.sep here is a forward slash, which is correct. 

> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> ---
>
> Key: CB-10156
> URL: https://issues.apache.org/jira/browse/CB-10156
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.4.1
>Reporter: Clark
>Assignee: Shazron Abdullah
>  Labels: cordova-6.0.0, cordova-ios-4.0.1
>
> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> 
> Error :
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1\Plugins\myPlugin\"",
> );
> 
> Right:
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1/Plugins/myPlugin\"",
> );



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

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



[jira] [Comment Edited] (CB-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Christian Gelinek (JIRA)

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

Christian Gelinek edited comment on CB-10199 at 12/15/15 11:19 PM:
---

Am I right that this means I should _remove_ the max and target entries from 
config.xml? And just set min entry to 19?

By the way, in my case it always defaults to android-22, not android-23 as you 
expected.


was (Author: cgelinek_radlogic):
Am I right that this means I should _remove_ the max and target entries from 
config.xml? And just set min entry to 19?

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



--
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-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-10199:
-

Target should be 22 for Cordova-Android 4.1.1, and if you only want to support 
Android 4.4 and up, min should be 19.

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



--
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-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Christian Gelinek (JIRA)

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

Christian Gelinek commented on CB-10199:


Am I right that this means I should _remove_ the max and target entries from 
config.xml? And just set min entry to 19?

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



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

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



[jira] [Comment Edited] (CB-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Joe Bowser (JIRA)

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

Joe Bowser edited comment on CB-10199 at 12/15/15 11:10 PM:


Setting max and target to 19 may actually prevent the application from 
building.  You should always target the latest API level, since Cordova is 
built with the latest API level.  It will still run on Android 4.4.x.  You 
should always install the latest supported version.   As of Cordova-Android 
5.0.x, this is actually android-23.

 The latest version of Cordova, built with the latest Android APIs do work with 
Android 4.4.


was (Author: bowserj):
Setting max and target to 19 may actually prevent the application from 
building.  You should always target the latest API level, since Cordova is 
built with the latest API level.  It will still run on Android 4.4.x.  You 
should always install the latest supported version.   As of Cordova-Android 
5.0.x, this is actually android-23.

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



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

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



[jira] [Comment Edited] (CB-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Joe Bowser (JIRA)

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

Joe Bowser edited comment on CB-10199 at 12/15/15 11:06 PM:


Setting max and target to 19 may actually prevent the application from 
building.  You should always target the latest API level, since Cordova is 
built with the latest API level.  It will still run on Android 4.4.x.  You 
should always install the latest supported version.   As of Cordova-Android 
5.0.x, this is actually android-23.


was (Author: bowserj):
Setting max and target to 19 may actually prevent the application from 
building.  You should always target the latest API level, since Cordova is 
built with the latest API level.  It will still run on Android 4.4.x. 

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



--
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-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-10199:
-

Setting max and target to 19 may actually prevent the application from 
building.  You should always target the latest API level, since Cordova is 
built with the latest API level.  It will still run on Android 4.4.x. 

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



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

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



[jira] [Comment Edited] (CB-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Christian Gelinek (JIRA)

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

Christian Gelinek edited comment on CB-10199 at 12/15/15 10:49 PM:
---

Because I'd like to test my project on an Android 4.4 device. As far as I 
understand, that means it has to be at least _compatible_ (minSdkVersion) with 
API level 19. Because setting minSdkVersion in my config.xml didn't change 
anything, I tried setting all (min, max and target) to 19 just to see whether 
it helps. Since I am new to Android development, I might be wrong with this. I 
noticed however that this (including other version combinations) seems to be a 
common question, here some examples:
https://stackoverflow.com/q/30028483/897968
https://stackoverflow.com/q/27135185/897968
https://stackoverflow.com/q/30879502/897968

So unless it is (for whatever reason, please enlighten me) disallowed to choose 
an API level other than dictated by the current cordova or cordova-android 
version, I think this is a bug.


was (Author: cgelinek_radlogic):
Because I'd like to test my project on an Android 4.4 device. As far as I 
understand, that means it has to be at least *compatible* (minSdkVersion) with 
API level 19. Because setting minSdkVersion in my config.xml didn't change 
anything, I tried setting all (min, max and target) to 19 just to see whether 
it helps. Since I am new to Android development, I might be wrong with this. I 
noticed however that this (including other version combinations) seems to be a 
common question, here some examples:
https://stackoverflow.com/q/30028483/897968
https://stackoverflow.com/q/27135185/897968
https://stackoverflow.com/q/30879502/897968

So unless it is (for whatever reason, please enlighten me) disallowed to choose 
an API level other than dictated by the current cordova or cordova-android 
version, I think this is a bug.

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



--
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-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Christian Gelinek (JIRA)

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

Christian Gelinek commented on CB-10199:


Because I'd like to test my project on an Android 4.4 device. As far as I 
understand, that means it has to be at least *compatible* (minSdkVersion) with 
API level 19. Because setting minSdkVersion in my config.xml didn't change 
anything, I tried setting all (min, max and target) to 19 just to see whether 
it helps. Since I am new to Android development, I might be wrong with this. I 
noticed however that this (including other version combinations) seems to be a 
common question, here some examples:
https://stackoverflow.com/q/30028483/897968
https://stackoverflow.com/q/27135185/897968
https://stackoverflow.com/q/30879502/897968

So unless it is (for whatever reason, please enlighten me) disallowed to choose 
an API level other than dictated by the current cordova or cordova-android 
version, I think this is a bug.

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



--
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-9254) update_cordova_subproject command for cordova-ios 4.0.0-dev results in a build error

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-9254:
--

Not sure what you are referring to. The script has been removed (see git commit 
above)

> update_cordova_subproject command for cordova-ios 4.0.0-dev results in a 
> build error
> 
>
> Key: CB-9254
> URL: https://issues.apache.org/jira/browse/CB-9254
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.0.0
> Environment: Mac OS X Yosemite 10.10.3, Xcode 6.3.1, iOS 8
>Reporter: Inderpreet
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.x
>
> When updating existing iOS sub project reference to 4.0.0-dev version using 
> update_cordova_subproject command as mentioned in ReadMe file 
> (https://github.com/apache/cordova-ios/blob/4.0.x/README.md) we get a build 
> error in Xcode - _Error : No visible @interface for 'CDVViewController' 
> declares the selector 'webViewDidFinishLoad:'_
> In order to resolve it, we at our end have updated our source code 
> MainViewController.m class by replacing it with the file present in templates 
> folder 
> cordova-ios/bin/templates/project/__PROJECT_NAME__/Classes/MainViewController.m
>  
> (https://github.com/apache/cordova-ios/raw/4.0.x/bin/templates/project/__PROJECT_NAME__/Classes/MainViewController.m)



--
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-9254) update_cordova_subproject command for cordova-ios 4.0.0-dev results in a build error

2015-12-15 Thread JIRA

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

Frederico Costa Galvão commented on CB-9254:


I still had this issue when upgrading from 3.9.1 to 4.0.0, had to re-add 
platform to make it work. Is this the expected behaviour?

> update_cordova_subproject command for cordova-ios 4.0.0-dev results in a 
> build error
> 
>
> Key: CB-9254
> URL: https://issues.apache.org/jira/browse/CB-9254
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.0.0
> Environment: Mac OS X Yosemite 10.10.3, Xcode 6.3.1, iOS 8
>Reporter: Inderpreet
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.x
>
> When updating existing iOS sub project reference to 4.0.0-dev version using 
> update_cordova_subproject command as mentioned in ReadMe file 
> (https://github.com/apache/cordova-ios/blob/4.0.x/README.md) we get a build 
> error in Xcode - _Error : No visible @interface for 'CDVViewController' 
> declares the selector 'webViewDidFinishLoad:'_
> In order to resolve it, we at our end have updated our source code 
> MainViewController.m class by replacing it with the file present in templates 
> folder 
> cordova-ios/bin/templates/project/__PROJECT_NAME__/Classes/MainViewController.m
>  
> (https://github.com/apache/cordova-ios/raw/4.0.x/bin/templates/project/__PROJECT_NAME__/Classes/MainViewController.m)



--
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-10199) Android SDK Version in config.xml doesn't propagate to project.properties

2015-12-15 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-10199:
-

The first question I have to ask is why are you targeting API level 19? 

> Android SDK Version in config.xml doesn't propagate to project.properties
> -
>
> Key: CB-10199
> URL: https://issues.apache.org/jira/browse/CB-10199
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Xubuntu 14.04
>Reporter: Christian Gelinek
>
> I couldn't find the versions I have in the entry form, here they are:
> {{cordova -v}}: 5.4.1
> {{cordova-android@4.1.1}}
> My config.xml file contains the following section:
> {noformat}
> 
> 
> 
> 
> 
> 
> {noformat}
> After running {{cordova platform add android}}, the 
> _./platforms/android/AndroidManifest.xml_ file contains the line
> {{ android:targetSdkVersion="19" />}}
> But the _./platforms/android/project.properties_ file still contains 
> {{target=android-22}}.
> Therefore running e.g. {{cordova build android}} fails with the following 
> message:
> {{ERROR: Error: Please install Android target: "android-22".}}



--
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-10179) Camera plugin doesn't work with iOS

2015-12-15 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-10179:
---

If you add a platform without specifying a version and add a plugin without 
specifying a version it should work.

If you add a platform specifying a version and add a plugin without specifying 
a version it might not work


> Camera plugin doesn't work with iOS
> ---
>
> Key: CB-10179
> URL: https://issues.apache.org/jira/browse/CB-10179
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.0.0
>Reporter: Raymond Camden
>
> Made a new Cordova project.
> cordova platform add ios@4.0.0
> cordova plugin add cordova-plugin-camera
> cordova emulate
> Gives:
> ** BUILD FAILED **
> The following build commands failed:
>   CompileC 
> build/HelloCordova.build/Debug-iphonesimulator/HelloCordova.build/Objects-normal/i386/CDVCamera.o
>  HelloCordova/Plugins/cordova-plugin-camera/CDVCamera.m normal i386 
> objective-c com.apple.compilers.llvm.clang.1_0.compiler
> (1 failure)
> Error: Error code 65 for command: xcodebuild with args: 
> -xcconfig,/Users/raymondcamden/Desktop/trash/dec10/platforms/ios/cordova/build-debug.xcconfig,-project,HelloCordova.xcodeproj,ARCHS=i386,-target,HelloCordova,-configuration,Debug,-sdk,iphonesimulator,build,VALID_ARCHS=i386,CONFIGURATION_BUILD_DIR=/Users/raymondcamden/Desktop/trash/dec10/platforms/ios/build/emulator,SHARED_PRECOMPS_DIR=/Users/raymondcamden/Desktop/trash/dec10/platforms/ios/build/sharedpch



--
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-10153) WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10153:
---

Filed CB-10202

> WKWebview does not respect the webkit-playsinline attribute
> ---
>
> Key: CB-10153
> URL: https://issues.apache.org/jira/browse/CB-10153
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 4.0.0
> Environment: iPhone 5s, Cordova 5.4.1, iOS 9.1
>Reporter: Frederik Wessberg
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> With the config.xml preference "AllowInlineMediaPlayback" set to true and the 
> attribute "webkit-playsinline" set on HTML5 video elements, you would expect 
> the media to play inline on iPhone devices such as on UIWebview.
> Looking in the CDVWKWebViewEngine.m file, the property is correctly bound to 
> the WKWebview config object: 
> wkWebView.configuration.allowsInlineMediaPlayback = [settings 
> cordovaBoolSettingForKey:@"AllowInlineMediaPlayback" defaultValue:NO];
> However, video elements does NOT play inline.
> Here's a repo that shows this behavior:
> https://github.com/dlmma/NoInline



--
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-10202) Add README quirk about WKWebview does not work with the AllowInlineMediaPlayback preference

2015-12-15 Thread ASF subversion and git services (JIRA)

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

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

Commit 1bc5766b4aa968a7707d2361c7224074ec41349a in 
cordova-plugin-wkwebview-engine's branch refs/heads/master from [~shazron]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-wkwebview-engine.git;h=1bc5766
 ]

CB-10202 - Add README quirk about WKWebview does not work with the 
AllowInlineMediaPlayback preference


> Add README quirk about WKWebview does not work with the 
> AllowInlineMediaPlayback preference
> ---
>
> Key: CB-10202
> URL: https://issues.apache.org/jira/browse/CB-10202
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Reporter: Shazron Abdullah
>
> See CB-10153



--
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-10202) Add README quirk about WKWebview does not work with the AllowInlineMediaPlayback preference

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-10202.
---
Resolution: Fixed
  Assignee: Shazron Abdullah

> Add README quirk about WKWebview does not work with the 
> AllowInlineMediaPlayback preference
> ---
>
> Key: CB-10202
> URL: https://issues.apache.org/jira/browse/CB-10202
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>
> See CB-10153



--
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-10202) Add README quirk about WKWebview does not work with the AllowInlineMediaPlayback preference

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-10202:
--
Summary: Add README quirk about WKWebview does not work with the 
AllowInlineMediaPlayback preference  (was: Add README quirk about WKWebview 
does not respect the webkit-playsinline attribute)

> Add README quirk about WKWebview does not work with the 
> AllowInlineMediaPlayback preference
> ---
>
> Key: CB-10202
> URL: https://issues.apache.org/jira/browse/CB-10202
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Reporter: Shazron Abdullah
>
> See CB-10153



--
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-10156) iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin

2015-12-15 Thread Carlos Santana (JIRA)

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

Carlos Santana commented on CB-10156:
-

[~clark...@hotmail.com] can you provide a sample plugin that can reproduce this 
problem?
It could be that plugin.xml has backward slash or like [~shazron] something to 
deal running on Windows system when adding the plugin.


> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> ---
>
> Key: CB-10156
> URL: https://issues.apache.org/jira/browse/CB-10156
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.4.1
>Reporter: Clark
>Assignee: Shazron Abdullah
>  Labels: cordova-6.0.0, cordova-ios-4.0.1
>
> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> 
> Error :
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1\Plugins\myPlugin\"",
> );
> 
> Right:
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1/Plugins/myPlugin\"",
> );



--
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-7875) watchPosition Timeout Error 3

2015-12-15 Thread Harpreet Singh (JIRA)

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

Harpreet Singh commented on CB-7875:


Any update ?

> watchPosition Timeout Error 3
> -
>
> Key: CB-7875
> URL: https://issues.apache.org/jira/browse/CB-7875
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Geolocation
> Environment: cordova-cli version 4.0.0
> cordova-plugin-geolocation: 0.3.10
> xCode 6
> IOS7 - IOS8
>Reporter: thomas fischer
>
> Using the cordova-plugin-geolocation: 0.3.10, I have a timeout error with 
> watchPosition. (error.code3)
> When i uninstall this plugin and use geolocation with the W3C API I have no 
> problem of timeout, but it's not working on IOS8 due to the new Location 
> Authorization



--
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-10202) Add README quirk about WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10202:
---

Added OpenRadar http://openradar.appspot.com/radar?id=6673091526656000
... after filing with Apple: rdar://problem/23903610

> Add README quirk about WKWebview does not respect the webkit-playsinline 
> attribute
> --
>
> Key: CB-10202
> URL: https://issues.apache.org/jira/browse/CB-10202
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Reporter: Shazron Abdullah
>
> See CB-10153



--
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-10202) Add README quirk about WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-10202:
-

 Summary: Add README quirk about WKWebview does not respect the 
webkit-playsinline attribute
 Key: CB-10202
 URL: https://issues.apache.org/jira/browse/CB-10202
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin WKWebViewEngine
Reporter: Shazron Abdullah


See CB-10153



--
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-10198) Prompt submission bug

2015-12-15 Thread ASF subversion and git services (JIRA)

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

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

Commit 599acc55e7fe8008f6b1646015aea521b942ace1 in cordova-osx's branch 
refs/heads/master from Andrew
[ https://git-wip-us.apache.org/repos/asf?p=cordova-osx.git;h=599acc5 ]

CB-10198 Prompt submission bug

Fixes an issue where clicking "OK" in a pop-up prompt does not return any value 
(despite being entered). The previous button-value checked was the constant 
NSAlertDefaultReturn, but since the NSAlert was created with the 'init' 
constructor, the runModal method will return one of 
NSAlert{first,second,third}ButtonReturn constants.. This closes #27


> Prompt submission bug
> -
>
> Key: CB-10198
> URL: https://issues.apache.org/jira/browse/CB-10198
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: OSX
>Reporter: Andrew Kubera
>Assignee: Tobias Bocanegra
> Fix For: Master
>
>
> When prompting the user, the CDVWebViewDelegate class currently checks if the 
> NSAlert return value is NSAlertDefaultReturn, it should be 
> NSAlertFirstButtonReturn to actually submit a value.



--
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-10198) Prompt submission bug

2015-12-15 Thread Tobias Bocanegra (JIRA)

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

Tobias Bocanegra resolved CB-10198.
---
   Resolution: Fixed
Fix Version/s: Master

thanks.

> Prompt submission bug
> -
>
> Key: CB-10198
> URL: https://issues.apache.org/jira/browse/CB-10198
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: OSX
>Reporter: Andrew Kubera
>Assignee: Tobias Bocanegra
> Fix For: Master
>
>
> When prompting the user, the CDVWebViewDelegate class currently checks if the 
> NSAlert return value is NSAlertDefaultReturn, it should be 
> NSAlertFirstButtonReturn to actually submit a value.



--
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-7875) watchPosition Timeout Error 3

2015-12-15 Thread Harpreet Singh (JIRA)

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

Harpreet Singh commented on CB-7875:


Any update ?

> watchPosition Timeout Error 3
> -
>
> Key: CB-7875
> URL: https://issues.apache.org/jira/browse/CB-7875
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Geolocation
> Environment: cordova-cli version 4.0.0
> cordova-plugin-geolocation: 0.3.10
> xCode 6
> IOS7 - IOS8
>Reporter: thomas fischer
>
> Using the cordova-plugin-geolocation: 0.3.10, I have a timeout error with 
> watchPosition. (error.code3)
> When i uninstall this plugin and use geolocation with the W3C API I have no 
> problem of timeout, but it's not working on IOS8 due to the new Location 
> Authorization



--
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-10201) Cordova-android not setting execute permissions on gradlew

2015-12-15 Thread Billy Catherall (JIRA)
Billy Catherall created CB-10201:


 Summary: Cordova-android not setting execute permissions on gradlew
 Key: CB-10201
 URL: https://issues.apache.org/jira/browse/CB-10201
 Project: Apache Cordova
  Issue Type: Bug
  Components: Android
Affects Versions: 5.0.0
 Environment: OSX
Reporter: Billy Catherall
Priority: Minor


When cordova build copies the gradlew script into the platform directory it 
doesn't set the +x flag so the script throws a permissions error during build.

ERROR building one of the platforms: Error: /xxx/platforms/android/gradlew: 
Command failed with exit code EACCES

This can be fixed in bin/templates/cordova/lib/builders/GradleBuilder.js bu 
adding 'shell.chmod('u+x', path.join(self.root, 'gradlew'));' just after 
'shell.cp(path.join(wrapperDir, 'gradlew'), self.root);' around line 150.



--
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-8480) DisallowOverscroll doesn't work in windows (universal) app

2015-12-15 Thread Sven Tobback (JIRA)

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

Sven Tobback commented on CB-8480:
--

+1 Having the same issue.

This is a huge throwback if you want to simulate a native look and feel. 
-ms-content-zooming: none; provides an alternitive but -ms-touch-action:none; 
is just not an option.

> DisallowOverscroll doesn't work in windows (universal) app
> --
>
> Key: CB-8480
> URL: https://issues.apache.org/jira/browse/CB-8480
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
> Environment: windows phone 8.1
>Reporter: Sarmad Eternal
>  Labels: patch, universal, windows, wp8.1
>
> There is no way to stop the bouncing window when scrolling like ofther 
> platforms as DisallowOverscroll doesn't seems to be working for me.
> Microsoft provides this CSS:
> -ms-touch-action:none;
> But it kills the scrolling everywhere in the app, so I used it like this
> -ms-touch-action:pan-y;
> which keeps the vertical scrolling working "with bouncing" but makes using 
> swipe event very responsive.
> Disabling the zoom also helps and its easy to do through the CSS 
> :-ms-content-zooming: none;
> There are few solution out there to be done though c#, but they make the 
> scrolling sluggish and not smooth.
> Thanks



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

2015-12-15 Thread Lasse (JIRA)

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

Lasse commented on CB-8976:
---

It would be preferable if Cordova did not by default define an arbitrary 
version numbering scheme.

In the documentation there are no hints at these changes to the version code:
https://cordova.apache.org/docs/en/5.4.0/config_ref/index.html
{quote}
Below is an example that *explicitly* sets these properties:
 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: CLI
> 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] [Commented] (CB-10153) WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Frederik Wessberg (JIRA)

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

Frederik Wessberg commented on CB-10153:


That's incredibly unfortunate.
Will this be added to the readme as a quirk in relation to the config.xml file? 
It's a feature I rely heavily on, and I assume others to do.

> WKWebview does not respect the webkit-playsinline attribute
> ---
>
> Key: CB-10153
> URL: https://issues.apache.org/jira/browse/CB-10153
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 4.0.0
> Environment: iPhone 5s, Cordova 5.4.1, iOS 9.1
>Reporter: Frederik Wessberg
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> With the config.xml preference "AllowInlineMediaPlayback" set to true and the 
> attribute "webkit-playsinline" set on HTML5 video elements, you would expect 
> the media to play inline on iPhone devices such as on UIWebview.
> Looking in the CDVWKWebViewEngine.m file, the property is correctly bound to 
> the WKWebview config object: 
> wkWebView.configuration.allowsInlineMediaPlayback = [settings 
> cordovaBoolSettingForKey:@"AllowInlineMediaPlayback" defaultValue:NO];
> However, video elements does NOT play inline.
> Here's a repo that shows this behavior:
> https://github.com/dlmma/NoInline



--
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-10151) cordova-plugin-file problem loading plugin in OS X

2015-12-15 Thread Ethan Jewett (JIRA)

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

Ethan Jewett closed CB-10151.
-
Resolution: Invalid

Unable to recreate. Rebuilding project from scratch with latest version of 
cordova-plugin-file fixed the problem.

> cordova-plugin-file problem loading plugin in OS X
> --
>
> Key: CB-10151
> URL: https://issues.apache.org/jira/browse/CB-10151
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin File
>Affects Versions: Master
> Environment: OS X 10.11.1
>Reporter: Ethan Jewett
>  Labels: osx
>
> When using the master branch of cordova-plugin-file along with cordova-osx, 
> it appears that the cordova-file-plugin does not load after "cordova plugin 
> add https://github.com/apache/cordova-plugin-file.git"; (commit 
> 554c6925cfbb6fed9edd745a1d3ee96a0b1b7bdc at the time of writing).
> Full X-Code build output is below. I assume the actual issue is the 3rd log 
> message from the bottom, but I have no idea how to fix this. I assume 
> 'cordova plugin add' is supposed to handle this without further intervention 
> on my part.
> 2015-12-05 17:14:06.657 PalladioMetaEdit[88521:9914574] navigating to 
> file:///Users/esjewett/Library/Developer/Xcode/DerivedData/PalladioMetaEdit-ceafduudwdlplohlcbboscwoznxk/Build/Products/Debug/PalladioMetaEdit.app/Contents/Resources/www/index.html
> 2015-12-05 17:14:06.659 PalladioMetaEdit[88521:9914574] WebStoragePath is 
> '~/Library/Application Support/PalladioMetaEdit', modify in config.xml.
> 2015-12-05 17:14:07.161 PalladioMetaEdit[88521:9914784] App Transport 
> Security has blocked a cleartext HTTP (http://) resource load since it is 
> insecure. Temporary exceptions can be configured via your app's Info.plist 
> file.
> 2015-12-05 17:14:07.354 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:52534: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.362 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:56760: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.373 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.373 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.373 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'vendor' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'platform' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 P

[jira] [Commented] (CB-10151) cordova-plugin-file problem loading plugin in OS X

2015-12-15 Thread Ethan Jewett (JIRA)

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

Ethan Jewett commented on CB-10151:
---

Well, I rebuilt the whole project from scratch and the issue went away. So I 
will close this.

> cordova-plugin-file problem loading plugin in OS X
> --
>
> Key: CB-10151
> URL: https://issues.apache.org/jira/browse/CB-10151
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin File
>Affects Versions: Master
> Environment: OS X 10.11.1
>Reporter: Ethan Jewett
>  Labels: osx
>
> When using the master branch of cordova-plugin-file along with cordova-osx, 
> it appears that the cordova-file-plugin does not load after "cordova plugin 
> add https://github.com/apache/cordova-plugin-file.git"; (commit 
> 554c6925cfbb6fed9edd745a1d3ee96a0b1b7bdc at the time of writing).
> Full X-Code build output is below. I assume the actual issue is the 3rd log 
> message from the bottom, but I have no idea how to fix this. I assume 
> 'cordova plugin add' is supposed to handle this without further intervention 
> on my part.
> 2015-12-05 17:14:06.657 PalladioMetaEdit[88521:9914574] navigating to 
> file:///Users/esjewett/Library/Developer/Xcode/DerivedData/PalladioMetaEdit-ceafduudwdlplohlcbboscwoznxk/Build/Products/Debug/PalladioMetaEdit.app/Contents/Resources/www/index.html
> 2015-12-05 17:14:06.659 PalladioMetaEdit[88521:9914574] WebStoragePath is 
> '~/Library/Application Support/PalladioMetaEdit', modify in config.xml.
> 2015-12-05 17:14:07.161 PalladioMetaEdit[88521:9914784] App Transport 
> Security has blocked a cleartext HTTP (http://) resource load since it is 
> insecure. Temporary exceptions can be configured via your app's Info.plist 
> file.
> 2015-12-05 17:14:07.354 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:52534: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.362 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:56760: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.373 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.373 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.373 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'vendor' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.374 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'userAgent' on a 
> non-Navigator object.
> 2015-12-05 17:14:07.375 PalladioMetaEdit[88521:9914574] JavaScript error: 
> palladio.js:73379: Deprecated attempt to access property 'platform' on a 
> non-Navigator object.
> 2015-12-05

[jira] [Commented] (CB-10117) Add new test scenarios to contacts plugin tests

2015-12-15 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10117:
-

Github user vladimir-kotikov commented on the pull request:


https://github.com/apache/cordova-plugin-contacts/pull/99#issuecomment-164790750
  
LGTM


> Add new test scenarios to contacts plugin tests
> ---
>
> Key: CB-10117
> URL: https://issues.apache.org/jira/browse/CB-10117
> Project: Apache Cordova
>  Issue Type: Test
>  Components: Plugin Contacts
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>
> Currently contacts plugin tests doesn't cover these scenarios:
> - Automatic and manual test for a contact containing special characters and 
> escape sequences 
> - Manual test for contact update
> - Manual test for empty contact creation



--
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-10117) Add new test scenarios to contacts plugin tests

2015-12-15 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-10117:
-

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


https://github.com/apache/cordova-plugin-contacts/pull/99#discussion_r47645743
  
--- Diff: tests/tests.js ---
@@ -618,20 +720,86 @@ exports.defineManualTests = function(contentEl, 
createActionButton) {
 }
 });
 } catch (e) {
-alert(e);
+console.error(e.message);
 }
 }
 
-function removeDooneyEvans() {
+function addDooneyEvans() {
+var displayName = "Dooney Evans";
+var contactName = {
+formatted: "Dooney Evans",
+familyName: "Evans",
+givenName: "Dooney",
+middleName: ""
+};
+var phoneNumber = '512-555-1234';
+var birthday = new Date(1985, 0, 23);
+
+addContact(displayName, contactName, phoneNumber, birthday);
+}
+
+function addNamelessContact() {
+addContact();
+}
+
+function addUnicodeContact() {
+var displayName = "Н€йромонах \nФеофаЊ";
+var contactName = {
+formatted: "Н€йромонах \nФеофаЊ",
+familyName: "\nФеофаЊ",
+givenName: "Н€йромонах",
+middleName: ""
+};
+
+addContact(displayName, contactName);
+}
+
+function renameDooneyEvans() {
 var results = document.getElementById('contact_results');
+var obj = new ContactFindOptions();
+obj.filter = 'Dooney Evans';
+obj.multiple = false;
 
-navigator.contacts.find(["displayName", "name", "phoneNumbers", 
"emails", "urls", "note"], function(contacts) {
+navigator.contacts.find(['displayName', 'name'], 
function(contacts) {
+if (contacts.length == 0) {
+results.innerHTML = 'No contacts to update.';
+return;
+}
+var contact = contacts[0];
+contact.displayName = "Urist McContact";
+var name = new ContactName();
+name.givenName = "Urist";
+name.familyName = "McContact";
+contact.name = name;
+contact.save(function(updated) {
+results.innerHTML = 'Contact updated.';
+},function(e) {
+results.innerHTML = 'Update failed: error ' + e.code;
+});
+}, function(e) {
+if (e.code === ContactError.NOT_SUPPORTED_ERROR) {
+results.innerHTML = 'Searching for contacts is not 
supported.';
+} else {
+results.innerHTML = 'Search failed: error ' + e.code;
+}
+}, obj)
+}
+
+function removeTestContacts() {
--- End diff --

Is it possible to reuse `removeContactsByFields` here?


> Add new test scenarios to contacts plugin tests
> ---
>
> Key: CB-10117
> URL: https://issues.apache.org/jira/browse/CB-10117
> Project: Apache Cordova
>  Issue Type: Test
>  Components: Plugin Contacts
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>
> Currently contacts plugin tests doesn't cover these scenarios:
> - Automatic and manual test for a contact containing special characters and 
> escape sequences 
> - Manual test for contact update
> - Manual test for empty contact creation



--
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-9990) Plugin build extras is no longer working in 5.4.0

2015-12-15 Thread Ross Cullen (JIRA)

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

Ross Cullen commented on CB-9990:
-

Hi Steve,

Updating the cordova-android version to 5.0.0 has fixed this problem.

Many thanks,
Ross



> Plugin build extras is no longer working in 5.4.0
> -
>
> Key: CB-9990
> URL: https://issues.apache.org/jira/browse/CB-9990
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CordovaLib
>Affects Versions: 5.4.1
> Environment: Mac (El Capitan)
>Reporter: Ross Cullen
>Assignee: Steve Gill
>  Labels: Android
> Fix For: 5.0.0
>
>
> Following the "Extending build.gradle" guide:
> https://cordova.apache.org/docs/en/edge/guide/platforms/android/tools.html
> We have been using the build-extras.gradle functionality in our custom plugin 
> since 5.0.0 and it's been working great. With  custom="true" type="gradleReference" /> in the plugin.xml.
> It inserts the script into
> // PLUGIN GRADLE EXTENSIONS START
> apply from: "/app-build-extras.gradle"
> // PLUGIN GRADLE EXTENSIONS END
> Upgrading to 5.4.0 and this functionality seems to be gone.
> i.e. the above line is blank after a rebuild
> // PLUGIN GRADLE EXTENSIONS START
> // PLUGIN GRADLE EXTENSIONS END



--
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-9365) Add support for 'vibrateWithPattern' to Windows Phone 8.1 / Windows 10

2015-12-15 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov resolved CB-9365.
-
Resolution: Fixed

Implemented in 2.0.1-dev

> Add support for 'vibrateWithPattern' to Windows Phone 8.1 / Windows 10
> --
>
> Key: CB-9365
> URL: https://issues.apache.org/jira/browse/CB-9365
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Vibration
>Reporter: Rob Paveza
>Assignee: Sergey Shakhnazarov
>Priority: Minor
>
> 'vibrateWithPattern' is supported by C# component in wp8, but needs to be 
> migrated to Windows Phone 8.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-9365) Add support for 'vibrateWithPattern' to Windows Phone 8.1 / Windows 10

2015-12-15 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9365:


Github user asfgit closed the pull request at:

https://github.com/apache/cordova-plugin-vibration/pull/38


> Add support for 'vibrateWithPattern' to Windows Phone 8.1 / Windows 10
> --
>
> Key: CB-9365
> URL: https://issues.apache.org/jira/browse/CB-9365
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Vibration
>Reporter: Rob Paveza
>Assignee: Sergey Shakhnazarov
>Priority: Minor
>
> 'vibrateWithPattern' is supported by C# component in wp8, but needs to be 
> migrated to Windows Phone 8.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-9365) Add support for 'vibrateWithPattern' to Windows Phone 8.1 / Windows 10

2015-12-15 Thread ASF subversion and git services (JIRA)

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

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

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

CB-9365 Add support for 'vibrateWithPattern' to Windows Phone 8.1 / Windows 10

Added manual test for `repeat`


> Add support for 'vibrateWithPattern' to Windows Phone 8.1 / Windows 10
> --
>
> Key: CB-9365
> URL: https://issues.apache.org/jira/browse/CB-9365
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Vibration
>Reporter: Rob Paveza
>Assignee: Sergey Shakhnazarov
>Priority: Minor
>
> 'vibrateWithPattern' is supported by C# component in wp8, but needs to be 
> migrated to Windows Phone 8.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] [Comment Edited] (CB-10156) iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah edited comment on CB-10156 at 12/15/15 10:05 AM:
--

Ultimately the code that does this is in 
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1024-L1042

which then calls this:
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1480-L1498

Since it's a custom framework, it will go to this condition:
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1493-L1494

so file.dirname is returning a path with backslashes, which I surmise could 
only happen on a Windows system (since path.sep would be a backslash on it). 
Was the plugin added from a Windows system?

In any case... it's still a bug -- the path saved should always use the Unix 
path.sep (forward slash).



was (Author: shazron):
Ultimately the code that does this is in 
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1024-L1042

which then cals this:
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1480-L1498

Since it's a custom framework, it will go to this condition:
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1493-L1494

so file.dirname is returning a path with backslashes, which I surmise could 
only happen on a Windows system (since path.sep would be a backslash on it). 
Was the plugin added from a Windows system?

In any case... it's still a bug -- the path saved should always use the Unix 
path.sep (forward slash).


> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> ---
>
> Key: CB-10156
> URL: https://issues.apache.org/jira/browse/CB-10156
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.4.1
>Reporter: Clark
>Assignee: Shazron Abdullah
>  Labels: cordova-6.0.0, cordova-ios-4.0.1
>
> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> 
> Error :
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1\Plugins\myPlugin\"",
> );
> 
> Right:
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1/Plugins/myPlugin\"",
> );



--
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-10156) iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10156:
---

Ultimately the code that does this is in 
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1024-L1042

which then cals this:
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1480-L1498

Since it's a custom framework, it will go to this condition:
https://github.com/alunny/node-xcode/blob/56560ab1d767ea81d33cde50f98cc52646ab5fa7/lib/pbxProject.js#L1493-L1494

so file.dirname is returning a path with backslashes, which I surmise could 
only happen on a Windows system (since path.sep would be a backslash on it). 
Was the plugin added from a Windows system?

In any case... it's still a bug -- the path saved should always use the Unix 
path.sep (forward slash).


> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> ---
>
> Key: CB-10156
> URL: https://issues.apache.org/jira/browse/CB-10156
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: CLI
>Affects Versions: 5.4.1
>Reporter: Clark
>Assignee: Shazron Abdullah
>  Labels: cordova-6.0.0, cordova-ios-4.0.1
>
> iOS platform FRAMEWORK_SEARCH_PATHS with add custom framework in plugin
> 
> Error :
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1\Plugins\myPlugin\"",
> );
> 
> Right:
> FRAMEWORK_SEARCH_PATHS = (
> "$(inherited)",
> "\"BlankCordovaApp1/Plugins/myPlugin\"",
> );



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

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



[jira] [Comment Edited] (CB-10153) WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah edited comment on CB-10153 at 12/15/15 9:25 AM:
-

I've verified it to be an Apple bug.

Firstly, I verified that it wasn't a Cordova configuration reading problem. 

I first observed, before setting it to true, that the value for:
wkWebView.configuration.allowsInlineMediaPlayback 
... is NO.

So I set it to:
wkWebView.configuration.allowsInlineMediaPlayback = YES;

Then I grabbed the value again immediately, 
wkWebView.configuration.allowsInlineMediaPlayback 
... and it was NO.

It's either not implemented, or the setter is buggy.


was (Author: shazron):
I've verified it to be an Apple bug.

Firstly, I verified that it wasn't a Cordova configuration reading problem. 

I first observed, before setting it to true, that the value for:
wkWebView.configuration.allowsInlineMediaPlayback 
... is NO.

So I set it to:
wkWebView.configuration.allowsInlineMediaPlayback = YES;

Then I grabbed the value again immediately, 
wkWebView.configuration.allowsInlineMediaPlayback 
... and it was NO as well.

It's either not implemented, or the setter is buggy.

> WKWebview does not respect the webkit-playsinline attribute
> ---
>
> Key: CB-10153
> URL: https://issues.apache.org/jira/browse/CB-10153
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 4.0.0
> Environment: iPhone 5s, Cordova 5.4.1, iOS 9.1
>Reporter: Frederik Wessberg
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> With the config.xml preference "AllowInlineMediaPlayback" set to true and the 
> attribute "webkit-playsinline" set on HTML5 video elements, you would expect 
> the media to play inline on iPhone devices such as on UIWebview.
> Looking in the CDVWKWebViewEngine.m file, the property is correctly bound to 
> the WKWebview config object: 
> wkWebView.configuration.allowsInlineMediaPlayback = [settings 
> cordovaBoolSettingForKey:@"AllowInlineMediaPlayback" defaultValue:NO];
> However, video elements does NOT play inline.
> Here's a repo that shows this behavior:
> https://github.com/dlmma/NoInline



--
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-10153) WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Shazron Abdullah (JIRA)

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

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

Set to Won'tFix because we can't fix this without getting into unauthorized 
methods.

> WKWebview does not respect the webkit-playsinline attribute
> ---
>
> Key: CB-10153
> URL: https://issues.apache.org/jira/browse/CB-10153
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 4.0.0
> Environment: iPhone 5s, Cordova 5.4.1, iOS 9.1
>Reporter: Frederik Wessberg
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> With the config.xml preference "AllowInlineMediaPlayback" set to true and the 
> attribute "webkit-playsinline" set on HTML5 video elements, you would expect 
> the media to play inline on iPhone devices such as on UIWebview.
> Looking in the CDVWKWebViewEngine.m file, the property is correctly bound to 
> the WKWebview config object: 
> wkWebView.configuration.allowsInlineMediaPlayback = [settings 
> cordovaBoolSettingForKey:@"AllowInlineMediaPlayback" defaultValue:NO];
> However, video elements does NOT play inline.
> Here's a repo that shows this behavior:
> https://github.com/dlmma/NoInline



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

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



[jira] [Comment Edited] (CB-10153) WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah edited comment on CB-10153 at 12/15/15 9:23 AM:
-

I've verified it to be an Apple bug.

Firstly, I verified that it wasn't a Cordova configuration reading problem. 

I first observed, before setting it to true, that the value for:
wkWebView.configuration.allowsInlineMediaPlayback 
... is NO.

So I set it to:
wkWebView.configuration.allowsInlineMediaPlayback = YES;

Then I grabbed the value again immediately, 
wkWebView.configuration.allowsInlineMediaPlayback 
... and it was NO as well.

It's either not implemented, or the setter is buggy.


was (Author: shazron):
I've verified it to be an Apple bug.

Firstly, I verified that it wasn't a Cordova configuration reading problem. 

I first observed, before setting it to true, that the value for:
wkWebView.configuration.allowsInlineMediaPlayback 
... is NO.

So I set it to:
wkWebView.configuration.allowsInlineMediaPlayback = YES;

Then I grabbed the value again immediately, 
wkWebView.configuration.allowsInlineMediaPlayback 
... and it was NO as well.


> WKWebview does not respect the webkit-playsinline attribute
> ---
>
> Key: CB-10153
> URL: https://issues.apache.org/jira/browse/CB-10153
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 4.0.0
> Environment: iPhone 5s, Cordova 5.4.1, iOS 9.1
>Reporter: Frederik Wessberg
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> With the config.xml preference "AllowInlineMediaPlayback" set to true and the 
> attribute "webkit-playsinline" set on HTML5 video elements, you would expect 
> the media to play inline on iPhone devices such as on UIWebview.
> Looking in the CDVWKWebViewEngine.m file, the property is correctly bound to 
> the WKWebview config object: 
> wkWebView.configuration.allowsInlineMediaPlayback = [settings 
> cordovaBoolSettingForKey:@"AllowInlineMediaPlayback" defaultValue:NO];
> However, video elements does NOT play inline.
> Here's a repo that shows this behavior:
> https://github.com/dlmma/NoInline



--
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-10153) WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10153:
---

I've verified it to be an Apple bug.

Firstly, I verified that it wasn't a Cordova configuration reading problem. 

I first observed, before setting it to true, that the value for:
wkWebView.configuration.allowsInlineMediaPlayback 
... is NO.

So I set it to:
wkWebView.configuration.allowsInlineMediaPlayback = YES;

Then I grabbed the value again immediately, 
wkWebView.configuration.allowsInlineMediaPlayback 
... and it was NO as well.


> WKWebview does not respect the webkit-playsinline attribute
> ---
>
> Key: CB-10153
> URL: https://issues.apache.org/jira/browse/CB-10153
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 4.0.0
> Environment: iPhone 5s, Cordova 5.4.1, iOS 9.1
>Reporter: Frederik Wessberg
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> With the config.xml preference "AllowInlineMediaPlayback" set to true and the 
> attribute "webkit-playsinline" set on HTML5 video elements, you would expect 
> the media to play inline on iPhone devices such as on UIWebview.
> Looking in the CDVWKWebViewEngine.m file, the property is correctly bound to 
> the WKWebview config object: 
> wkWebView.configuration.allowsInlineMediaPlayback = [settings 
> cordovaBoolSettingForKey:@"AllowInlineMediaPlayback" defaultValue:NO];
> However, video elements does NOT play inline.
> Here's a repo that shows this behavior:
> https://github.com/dlmma/NoInline



--
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-10153) WKWebview does not respect the webkit-playsinline attribute

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah reassigned CB-10153:
-

Assignee: Shazron Abdullah

> WKWebview does not respect the webkit-playsinline attribute
> ---
>
> Key: CB-10153
> URL: https://issues.apache.org/jira/browse/CB-10153
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
>Affects Versions: 4.0.0
> Environment: iPhone 5s, Cordova 5.4.1, iOS 9.1
>Reporter: Frederik Wessberg
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> With the config.xml preference "AllowInlineMediaPlayback" set to true and the 
> attribute "webkit-playsinline" set on HTML5 video elements, you would expect 
> the media to play inline on iPhone devices such as on UIWebview.
> Looking in the CDVWKWebViewEngine.m file, the property is correctly bound to 
> the WKWebview config object: 
> wkWebView.configuration.allowsInlineMediaPlayback = [settings 
> cordovaBoolSettingForKey:@"AllowInlineMediaPlayback" defaultValue:NO];
> However, video elements does NOT play inline.
> Here's a repo that shows this behavior:
> https://github.com/dlmma/NoInline



--
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-10184) Images.xcassets: A 83.5x83.5@2x app icon is required for iPad apps targeting iOS 9.0 and later

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-10184:
--
Labels: cordova-ios-4.1.0  (was: cordova-ios-4.0.1)

> Images.xcassets: A 83.5x83.5@2x app icon is required for iPad apps targeting 
> iOS 9.0 and later
> --
>
> Key: CB-10184
> URL: https://issues.apache.org/jira/browse/CB-10184
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>  Labels: cordova-ios-4.1.0
>
> Warning in Xcode 7.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-10186) Update __PROJECTNAME__.xcodeproj to recommended settings in Xcode 7.2

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-10186:
--
Labels: cordova-ios-4.1.0  (was: cordova-ios-4.0.1)

> Update __PROJECTNAME__.xcodeproj to recommended settings in Xcode 7.2
> -
>
> Key: CB-10186
> URL: https://issues.apache.org/jira/browse/CB-10186
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>  Labels: cordova-ios-4.1.0
>
> This is the default template project. Do for CLI and non-CLI



--
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-10184) Images.xcassets: A 83.5x83.5@2x app icon is required for iPad apps targeting iOS 9.0 and later

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10184:
---

Postpone this. This requires a change in prepare.js (ios parser) as well.
We need a new 167x167 icon. name it icon-8...@2x.png.

This is for the iPad Pro.

> Images.xcassets: A 83.5x83.5@2x app icon is required for iPad apps targeting 
> iOS 9.0 and later
> --
>
> Key: CB-10184
> URL: https://issues.apache.org/jira/browse/CB-10184
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> Warning in Xcode 7.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-10186) Update __PROJECTNAME__.xcodeproj to recommended settings in Xcode 7.2

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-10186:
---

Postpone this. One of the recommended settings is to use 
$(PRODUCT_BUNDLE_IDENTIFIER) for CFBundleIdentifier in Info.plist, which refers 
to the same variable in project.pbxproj.

This breaks our create, and prepare scripts which assume the bundle identifier 
is in Info.plist.

I can only assume this was changed so you can have different bundle identifiers 
in the Build Settings for Debug and Release configurations.

> Update __PROJECTNAME__.xcodeproj to recommended settings in Xcode 7.2
> -
>
> Key: CB-10186
> URL: https://issues.apache.org/jira/browse/CB-10186
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>  Labels: cordova-ios-4.0.1
>
> This is the default template project. Do for CLI and non-CLI



--
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-10200) Using NON-CLI template when platform is added locally

2015-12-15 Thread Shazron Abdullah (JIRA)
Shazron Abdullah created CB-10200:
-

 Summary: Using NON-CLI template when platform is added locally
 Key: CB-10200
 URL: https://issues.apache.org/jira/browse/CB-10200
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS
Reporter: Shazron Abdullah


{code}
cordova create foo foo foo
cordova platform /path/to/local/cordova-ios
{code}

Expected:
Use the CLI template

Actual:
Uses the NON-CLI template

bin/lib/create.js createProject



--
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-10185) Update CordovaLib.xcodeproj to recommended settings in Xcode 7.2

2015-12-15 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-10185.
---
Resolution: Fixed
  Assignee: Shazron Abdullah

> Update CordovaLib.xcodeproj to recommended settings in Xcode 7.2
> 
>
> Key: CB-10185
> URL: https://issues.apache.org/jira/browse/CB-10185
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
>  Labels: cordova-ios-4.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] [Commented] (CB-10185) Update CordovaLib.xcodeproj to recommended settings in Xcode 7.2

2015-12-15 Thread ASF subversion and git services (JIRA)

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

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

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

CB-10185 - Update CordovaLib.xcodeproj to recommended settings in Xcode 7.2


> Update CordovaLib.xcodeproj to recommended settings in Xcode 7.2
> 
>
> Key: CB-10185
> URL: https://issues.apache.org/jira/browse/CB-10185
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>  Labels: cordova-ios-4.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