[jira] [Comment Edited] (CB-9148) Add support for file picker in InAppBrowser

2016-11-16 Thread Darron Park (JIRA)

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

Darron Park edited comment on CB-9148 at 11/16/16 8:12 AM:
---

The Code below fixed this problem for me.
Maybe someone who can contribute this code to inappbrowser source.

> Source: InAppBrowser.java

> First, I imported some Classes

import android.util.Log;
import android.webkit.ValueCallback;
import android.webkit.WebChromeClient;

> Second, I added some variables in InAppBrowser class.

private ValueCallback mUploadMessage;
private ValueCallback mUploadMessageLollipop;
private final static int FILECHOOSER_RESULTCODE = 1;
private final static int FILECHOOSER_LOLLIPOP_RESULTCODE = 2;


> Then, I changed the code from...

inAppWebView.setWebChromeClient(new InAppChromeClient(thatWebView));

> to...

inAppWebView.setWebChromeClient(new InAppChromeClient(thatWebView) {

public void openFileChooser(ValueCallback uploadMsg, String 
acceptType, String capture) {
mUploadMessage = uploadMsg;
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*");
Log.i("mytag", "openFileChooser Executed");
cordova.getActivity().startActivityForResult(
Intent.createChooser(i, "File Chooser"),
FILECHOOSER_RESULTCODE);
}

public void showFileChooser(ValueCallback filePathCallback, 
String acceptType, boolean paramBoolean) {
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*");
Log.i("mytag", "showFileChooser Executed");
cordova.getActivity().startActivityForResult(
Intent.createChooser(i, "File Chooser"),
FILECHOOSER_RESULTCODE);
}

// For Android 5.0+
public boolean onShowFileChooser(
WebView webView, ValueCallback filePathCallback,
WebChromeClient.FileChooserParams fileChooserParams) {
mUploadMessageLollipop = filePathCallback;
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*");
Log.d("MainActivity", "5.0+");

cordova.getActivity().startActivityForResult(Intent.createChooser(i, "File 
Chooser"), FILECHOOSER_LOLLIPOP_RESULTCODE);

return true;
}

});


> Also added method below to InAppBrowser class

public void onActivityResult(int requestCode, int resultCode, Intent intent) {
Log.i("mytag", "onActivityResult");
if (requestCode == FILECHOOSER_RESULTCODE) {
Log.i("mytag", "onActivityResult (File Chooser)");
if (null == mUploadMessage)
return;
Uri result = intent == null || resultCode != 
cordova.getActivity().RESULT_OK ? null
: intent.getData();
mUploadMessage.onReceiveValue(result);
mUploadMessage = null;
}
else if(requestCode == FILECHOOSER_LOLLIPOP_RESULTCODE) {
Log.i("mytag", "onActivityResult (File Chooser Lollipop)");
if (mUploadMessageLollipop == null) return ;
if (Build.VERSION.SDK_INT >= 
Build.VERSION_CODES.LOLLIPOP) {

mUploadMessageLollipop.onReceiveValue(WebChromeClient.FileChooserParams.parseResult(resultCode,
 intent));
}
mUploadMessageLollipop = null;
}
}


I can't understand why this basic function is not yet implemented to 
InAppBrowser :(


was (Author: jay8585):
The Code below fixed this problem for me.
Maybe someone who can contribute this code to inappbrowser source.

> Source: InAppBrowser.java

> First, I added some variables in InAppBrowser class.

private ValueCallback mUploadMessage;
private ValueCallback mUploadMessageLollipop;
private final static int FILECHOOSER_RESULTCODE = 1;
private final static int FIL

[jira] [Created] (CB-12154) cordova-plugin-file-transfer

2016-11-16 Thread samed ceylan (JIRA)
samed ceylan created CB-12154:
-

 Summary: cordova-plugin-file-transfer
 Key: CB-12154
 URL: https://issues.apache.org/jira/browse/CB-12154
 Project: Apache Cordova
  Issue Type: Bug
 Environment: cordova-plugin-file-transfer bug progressEvent.total = -1
Reporter: samed ceylan
Priority: Critical


cordova-plugin-file-transfer bug progressEvent.total = -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-12154) cordova-plugin-file-transfer

2016-11-16 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov commented on CB-12154:
--

[~imadige] could you add some details and test code (especially call options) + 
an endpoint for testing?

> cordova-plugin-file-transfer
> 
>
> Key: CB-12154
> URL: https://issues.apache.org/jira/browse/CB-12154
> Project: Apache Cordova
>  Issue Type: Bug
> Environment: cordova-plugin-file-transfer bug progressEvent.total = -1
>Reporter: samed ceylan
>Priority: Critical
>
> cordova-plugin-file-transfer bug progressEvent.total = -1



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

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



[jira] [Updated] (CB-12154) cordova-plugin-file-transfer

2016-11-16 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov updated CB-12154:
-
Environment: (was: cordova-plugin-file-transfer bug progressEvent.total 
= -1)

> cordova-plugin-file-transfer
> 
>
> Key: CB-12154
> URL: https://issues.apache.org/jira/browse/CB-12154
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: samed ceylan
>Priority: Critical
>
> cordova-plugin-file-transfer bug progressEvent.total = -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-12154) cordova-plugin-file-transfer

2016-11-16 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov edited comment on CB-12154 at 11/16/16 9:20 AM:


[~imadige] could you add some details and test code (especially call options) + 
an endpoint for testing?
Also, which platform is failing?
Please add details of your environment (host OS & version, target OS, model & 
version).


was (Author: daserge):
[~imadige] could you add some details and test code (especially call options) + 
an endpoint for testing?

> cordova-plugin-file-transfer
> 
>
> Key: CB-12154
> URL: https://issues.apache.org/jira/browse/CB-12154
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: samed ceylan
>Priority: Critical
>
> cordova-plugin-file-transfer bug progressEvent.total = -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-11230) IPv4 dependency on iOS

2016-11-16 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11230:
-

Github user vladimir-kotikov commented on the issue:

https://github.com/apache/cordova-plugin-network-information/pull/51
  
@shazron, could you take a look please? This PR just aligns curent 
implementation for `CDVReachability` with latest Apple's changes. In particular 
it removes `reachabilityForLocalWiFi` which we weren't using anyway and makes 
`reachabilityWithAddress` accept more generic `sockaddr` rather than 
`sockaddr_in`

Tested this on iOS 8 and 9 according to [this 
guide](https://developer.apple.com/library/content/documentation/NetworkingInternetWeb/Conceptual/NetworkingOverview/UnderstandingandPreparingfortheIPv6Transition/UnderstandingandPreparingfortheIPv6Transition.html#//apple_ref/doc/uid/TP40010220-CH213-SW16)
 


> IPv4 dependency on iOS
> --
>
> Key: CB-11230
> URL: https://issues.apache.org/jira/browse/CB-11230
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Network Information
>Reporter: Christian Speckner
>  Labels: iOS, mustfix, triaged
>
> According to https://developer.apple.com/news/?id=05042016a , Apple will 
> reject Apps using IPv4 specific APIs after June 1st . A quick look at the 
> plugin shows that the iOS version uses  
> {{SCNetworkReachabilityCreateWithName}} and hence will be affected by this 
> restriction (according to 
> https://developer.apple.com/library/mac/documentation/NetworkingInternetWeb/Conceptual/NetworkingOverview/UnderstandingandPreparingfortheIPv6Transition/UnderstandingandPreparingfortheIPv6Transition.html).



--
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-9148) Add support for file picker in InAppBrowser

2016-11-16 Thread Anders Borg (JIRA)

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

Anders Borg commented on CB-9148:
-

This has become a major issue for a combined app and CMS solution my company 
provides.

The CMS supports configuring arbitrary forms and surveys, where uploading files 
like pictures for status reports, job applications etc is supported by the CMS, 
but can't be used from the app when such sites are invoked via inappbrowser.

We can't go statically to a specific site (without inappbrowser) as the user 
decides on the fly what sites to visit. The app provides a smorgasboard of 
available sites. We also need a simple way of returning to the app's main view, 
however deeply the user navigated on any particular site. Therefore 
inappbrowser plays an important role.

I guess we could use some other webview component, if there's any that supports 
this, and doesn't break something else, but that adds a lot to the app size.

So, this is another request to have this implemented.

> Add support for file picker in InAppBrowser
> ---
>
> Key: CB-9148
> URL: https://issues.apache.org/jira/browse/CB-9148
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin InAppBrowser
>Affects Versions: 3.5.0, 3.6.0
> Environment: problem in Android, the camera roll never opens  (iOS 
> working OK)
>Reporter: Tomas Rawski
>  Labels: Android, camera, file, input, roll, triaged
>
> reproduce : 
> open the inAppBrowser: http://www.plupload.com/examples
> click in Add files.
> This works ok when I call it from the _system or _self. But not for _blank.



--
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-9789) The Phonegap camera plugin doesn't use the native iOS language. Instead, it always uses english for the buttons ('Retake', 'Use' etc.)

2016-11-16 Thread Anders Borg (JIRA)

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

Anders Borg commented on CB-9789:
-

I'm not so familiar with the release process of core components, so I wonder if 
this is now available in any released version of Cordova core.

I'm using iOS 4.2.0 via PGB cli-6.3.0. When adding defaultlocale to config.xml 
it still came out wrong.

> The Phonegap camera plugin doesn't use the native iOS language. Instead, it 
> always uses english for the buttons ('Retake', 'Use' etc.)
> --
>
> Key: CB-9789
> URL: https://issues.apache.org/jira/browse/CB-9789
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Affects Versions: 3.9.0
> Environment: iOS 9.0.2
> X-Code 7.0.1
> CordovaLib 3.9.1 
> cordova-plugin-camera: 1.2.0
>Reporter: Ronny Schleicher
>Assignee: jcesarmobile
>
> I found in StackOverflow this link:
> [StackOverflow|http://stackoverflow.com/questions/15155713/phonegap-change-language-of-labels]



--
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-9789) The Phonegap camera plugin doesn't use the native iOS language. Instead, it always uses english for the buttons ('Retake', 'Use' etc.)

2016-11-16 Thread jcesarmobile (JIRA)

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

jcesarmobile commented on CB-9789:
--

This is fixed in Cordova CLI 6.4.0

Your problem is you are using Phonegap, not Cordova. They use Cordova as a 
component, but they haven't updated their version yet.

> The Phonegap camera plugin doesn't use the native iOS language. Instead, it 
> always uses english for the buttons ('Retake', 'Use' etc.)
> --
>
> Key: CB-9789
> URL: https://issues.apache.org/jira/browse/CB-9789
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Affects Versions: 3.9.0
> Environment: iOS 9.0.2
> X-Code 7.0.1
> CordovaLib 3.9.1 
> cordova-plugin-camera: 1.2.0
>Reporter: Ronny Schleicher
>Assignee: jcesarmobile
>
> I found in StackOverflow this link:
> [StackOverflow|http://stackoverflow.com/questions/15155713/phonegap-change-language-of-labels]



--
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-9789) The Phonegap camera plugin doesn't use the native iOS language. Instead, it always uses english for the buttons ('Retake', 'Use' etc.)

2016-11-16 Thread Anders Borg (JIRA)

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

Anders Borg commented on CB-9789:
-

Go figure.

Yes, I have to use PhoneGap right now, due to PhoneGap Build. I'll consider 
command-line tools instead.

Thanks for the response.
Anders

> The Phonegap camera plugin doesn't use the native iOS language. Instead, it 
> always uses english for the buttons ('Retake', 'Use' etc.)
> --
>
> Key: CB-9789
> URL: https://issues.apache.org/jira/browse/CB-9789
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Camera
>Affects Versions: 3.9.0
> Environment: iOS 9.0.2
> X-Code 7.0.1
> CordovaLib 3.9.1 
> cordova-plugin-camera: 1.2.0
>Reporter: Ronny Schleicher
>Assignee: jcesarmobile
>
> I found in StackOverflow this link:
> [StackOverflow|http://stackoverflow.com/questions/15155713/phonegap-change-language-of-labels]



--
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-12154) cordova-plugin-file-transfer

2016-11-16 Thread samed ceylan (JIRA)

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

samed ceylan commented on CB-12154:
---

iphone 5 ios 10.1
cordova-plugin-file-transfer 1.5.0  working
cordova-plugin-file-transfer 1.6.0  bug

var addEntryVideoCapcaptureSuccess = function(mediaFiles) {

videocapcontrol=false;

var i, path, len, size;

for (i = 0, len = mediaFiles.length; i < len; i += 1) {
path = mediaFiles[i].fullPath;
size = mediaFiles[i].size;
   
addEntryVideoCapuploadFile(mediaFiles[i]);
}
   

};



function addEntryVideoCapuploadFile(mediaFile) {
lastmediaFile=mediaFile;

var ft = new FileTransfer(),
path = mediaFile.fullPath,
name = mediaFile.name;
var options = new FileUploadOptions();
options.mimeType = "video/mpeg";
options.fileName = name;
options.chunkedMode = true;

ft.onprogress = function(progressEvent) {

console.log(progressEvent.total); /// output -1

progressbar((progressEvent.loaded / progressEvent.total)*100);
};

> cordova-plugin-file-transfer
> 
>
> Key: CB-12154
> URL: https://issues.apache.org/jira/browse/CB-12154
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: samed ceylan
>Priority: Critical
>
> cordova-plugin-file-transfer bug progressEvent.total = -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-9148) Add support for file picker in InAppBrowser

2016-11-16 Thread Darron Park (JIRA)

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

Darron Park edited comment on CB-9148 at 11/16/16 11:07 AM:


The Code below fixed this problem for me.
Maybe someone can contribute this code to inappbrowser source.

> Source: InAppBrowser.java

> First, I imported some Classes

import android.util.Log;
import android.webkit.ValueCallback;
import android.webkit.WebChromeClient;

> Second, I added some variables in InAppBrowser class.

private ValueCallback mUploadMessage;
private ValueCallback mUploadMessageLollipop;
private final static int FILECHOOSER_RESULTCODE = 1;
private final static int FILECHOOSER_LOLLIPOP_RESULTCODE = 2;


> Then, I changed the code from...

inAppWebView.setWebChromeClient(new InAppChromeClient(thatWebView));

> to...

inAppWebView.setWebChromeClient(new InAppChromeClient(thatWebView) {

public void openFileChooser(ValueCallback uploadMsg, String 
acceptType, String capture) {
mUploadMessage = uploadMsg;
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*");
Log.i("mytag", "openFileChooser Executed");
cordova.getActivity().startActivityForResult(
Intent.createChooser(i, "File Chooser"),
FILECHOOSER_RESULTCODE);
}

public void showFileChooser(ValueCallback filePathCallback, 
String acceptType, boolean paramBoolean) {
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*");
Log.i("mytag", "showFileChooser Executed");
cordova.getActivity().startActivityForResult(
Intent.createChooser(i, "File Chooser"),
FILECHOOSER_RESULTCODE);
}

// For Android 5.0+
public boolean onShowFileChooser(
WebView webView, ValueCallback filePathCallback,
WebChromeClient.FileChooserParams fileChooserParams) {
mUploadMessageLollipop = filePathCallback;
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*");
Log.d("MainActivity", "5.0+");

cordova.getActivity().startActivityForResult(Intent.createChooser(i, "File 
Chooser"), FILECHOOSER_LOLLIPOP_RESULTCODE);

return true;
}

});


> Also added method below to InAppBrowser class

public void onActivityResult(int requestCode, int resultCode, Intent intent) {
Log.i("mytag", "onActivityResult");
if (requestCode == FILECHOOSER_RESULTCODE) {
Log.i("mytag", "onActivityResult (File Chooser)");
if (null == mUploadMessage)
return;
Uri result = intent == null || resultCode != 
cordova.getActivity().RESULT_OK ? null
: intent.getData();
mUploadMessage.onReceiveValue(result);
mUploadMessage = null;
}
else if(requestCode == FILECHOOSER_LOLLIPOP_RESULTCODE) {
Log.i("mytag", "onActivityResult (File Chooser Lollipop)");
if (mUploadMessageLollipop == null) return ;
if (Build.VERSION.SDK_INT >= 
Build.VERSION_CODES.LOLLIPOP) {

mUploadMessageLollipop.onReceiveValue(WebChromeClient.FileChooserParams.parseResult(resultCode,
 intent));
}
mUploadMessageLollipop = null;
}
}


I can't understand why this basic function is not yet implemented to 
InAppBrowser :(


was (Author: jay8585):
The Code below fixed this problem for me.
Maybe someone who can contribute this code to inappbrowser source.

> Source: InAppBrowser.java

> First, I imported some Classes

import android.util.Log;
import android.webkit.ValueCallback;
import android.webkit.WebChromeClient;

> Second, I added some variables in InAppBrowser class.
---

[jira] [Closed] (CB-12147) Typo in cordova-windows causes verbose message not to print

2016-11-16 Thread Vladimir Kotikov (JIRA)

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

Vladimir Kotikov closed CB-12147.
-
Resolution: Fixed

> Typo in cordova-windows causes verbose message not to print
> ---
>
> Key: CB-12147
> URL: https://issues.apache.org/jira/browse/CB-12147
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Windows
>Affects Versions: Master
>Reporter: Jimmy Thomson
>Priority: Trivial
>
> The code at 
> https://github.com/apache/cordova-windows/blob/master/template/cordova/lib/build.js#L291
>  refers to 'vebose' rather than 'verbose', which means that particular 
> diagnostic statement does not print as it should.



--
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-9148) Add support for file picker in InAppBrowser

2016-11-16 Thread Mo Pages (JIRA)

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

Mo Pages commented on CB-9148:
--

Nice, but didn't work for me (on a Nexus 5x running Android 6.1). The upload 
dialog appears but after selecting a file the file doesn't upload... the log 
says:
MainActivity: 5.0+
CordovaInterfaceImpl: Got an activity result, but no plugin was registered to 
receive it.

> Add support for file picker in InAppBrowser
> ---
>
> Key: CB-9148
> URL: https://issues.apache.org/jira/browse/CB-9148
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin InAppBrowser
>Affects Versions: 3.5.0, 3.6.0
> Environment: problem in Android, the camera roll never opens  (iOS 
> working OK)
>Reporter: Tomas Rawski
>  Labels: Android, camera, file, input, roll, triaged
>
> reproduce : 
> open the inAppBrowser: http://www.plupload.com/examples
> click in Add files.
> This works ok when I call it from the _system or _self. But not for _blank.



--
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-12154) file-transfer progressEvent.total = -1 on iOS

2016-11-16 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov updated CB-12154:
-
Summary: file-transfer progressEvent.total = -1 on iOS  (was: 
cordova-plugin-file-transfer)

> file-transfer progressEvent.total = -1 on iOS
> -
>
> Key: CB-12154
> URL: https://issues.apache.org/jira/browse/CB-12154
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: samed ceylan
>Priority: Critical
>
> cordova-plugin-file-transfer bug progressEvent.total = -1



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

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



[jira] [Updated] (CB-12154) file-transfer progressEvent.total = -1 on iOS

2016-11-16 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov updated CB-12154:
-
Component/s: Plugin File Transfer

> file-transfer progressEvent.total = -1 on iOS
> -
>
> Key: CB-12154
> URL: https://issues.apache.org/jira/browse/CB-12154
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin File Transfer
>Reporter: samed ceylan
>Priority: Critical
>  Labels: ios, triaged
>
> cordova-plugin-file-transfer bug progressEvent.total = -1



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

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



[jira] [Updated] (CB-12154) file-transfer progressEvent.total = -1 on iOS

2016-11-16 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov updated CB-12154:
-
Labels: ios triaged  (was: )

> file-transfer progressEvent.total = -1 on iOS
> -
>
> Key: CB-12154
> URL: https://issues.apache.org/jira/browse/CB-12154
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin File Transfer
>Reporter: samed ceylan
>Priority: Critical
>  Labels: ios, triaged
>
> cordova-plugin-file-transfer bug progressEvent.total = -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-11513) iOS memory warning stops sound, but does not send status to JS-client

2016-11-16 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11513:
-

Github user romedius commented on the issue:

https://github.com/apache/cordova-plugin-media/pull/120
  
@stevengill if you have some spare time, could you take a look at this 
patch too, or point me to the right maintainer?
Thank you!


> iOS memory warning stops sound, but does not send status to JS-client
> -
>
> Key: CB-11513
> URL: https://issues.apache.org/jira/browse/CB-11513
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media
>Affects Versions: 3.6.3, 4.1.3, 6.1.0
> Environment: iOS 9.3 iPhone 6
>Reporter: Thomas K.
>
> If iOS issues a memory warning while playing a sound, all sounds are 
> terminated. However the ios/CDVSound.m plugin does not update the state of 
> its JS-clients, so the last state the Client knows is Media.MEDIA_RUNNING, 
> which is untrue after a memory warning. This results in incorrect clientside 
> status.
> Problem: A user's software component may send pause() instead of play() 
> (toggle button) effectively rendering the sound unplayable without recovery. 
> This happened in our case.
> Fix: Do not discard currently playing sounds. The first memory warning 
> arrives exactly when the App enters the yellow area and consumes 500MB 
> however it may consume 750MB and more according to Xcode so terminating 
> sounds on "memory warning" is incorrect behavior.
> https://github.com/apache/cordova-plugin-media/blob/master/src/ios/CDVSound.m#L814
> How to reproduce: Add 1 or 2 large animated GIFs with 200+ frames to the 
> UIWebView, this will consume 500MB quickly while playing the GIFs, or 
> simulate the memory warning using the iOS Simulator while playing a sound.



--
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-12141) white app screen after camera overlay shown on iPad

2016-11-16 Thread Jonathan Li (JIRA)

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

Jonathan Li commented on CB-12141:
--

I tried the steps on an iPad Pro device (iOS 9.3.5), but could not repeat the 
issue. After clicking on the button "Take Photo" to take the photo, then 
clicking "Use Photo" button comes back the index.html page.

Do I need to rotate the device during testing, or keep the device in landscape 
mode?

Thanks
Jonathan 

> white app screen after camera overlay shown on iPad
> ---
>
> Key: CB-12141
> URL: https://issues.apache.org/jira/browse/CB-12141
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Statusbar
>Affects Versions: Master
> Environment: iOS 9.3.5
> cordova 6.4.0
> cordova-plugin-camera 2.3.0
> cordova-plugin-statusbar 2.2.1-dev (current master branch)
>Reporter: Michael Schmidt
>Assignee: jcesarmobile
>  Labels: ios
>
> h4. steps to reproduce
> * create cordova app
> {code}
> cordova create MyAppTest33
> cd MyAppTest33/
> cordova platform add ios
> cordova plugin add https://github.com/apache/cordova-plugin-statusbar.git 
> --save
> cordova plugin add cordova-plugin-camera --variable 
> CAMERA_USAGE_DESCRIPTION=" " --variable PHOTOLIBRARY_USAGE_DESCRIPTION=" " 
> --save
> {code}
> * add camera sample code to www folder
> {code}
> https://github.com/Icenium/Sample-Camera/blob/master/Camera%20Sample/index.html
> https://github.com/Icenium/Sample-Camera/blob/master/Camera%20Sample/scripts/main.js
> https://github.com/Icenium/Sample-Camera/blob/master/Camera%20Sample/styles/theme.css
> {code}
> * change config.xml to landscape app
> {code}
> 
> {code}
> h4. action: open camera on iPad
> * open app on real device: iPad
> * take picture from camera (or open camera & cancel)
> h4. problem: App screen turns white
> * completely white screen - web app is completely gone
> h4. root cause is the statusbar plugin on iPad in landscape app
> * it works well ..
> ** with Orientation "portrait" 
> ** on iPhone
> ** without statusbar plugin



--
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-12155) Create automated tests for launch storyboard feature

2016-11-16 Thread Kerri Shotts (JIRA)
Kerri Shotts created CB-12155:
-

 Summary: Create automated tests for launch storyboard feature
 Key: CB-12155
 URL: https://issues.apache.org/jira/browse/CB-12155
 Project: Apache Cordova
  Issue Type: Test
  Components: iOS
Affects Versions: 4.3.1
Reporter: Kerri Shotts
Assignee: Kerri Shotts


This issue is to track development of automated testing for the launch 
storyboard feature introduced with CB-9762. Right now all testing is manual, 
but most of the functionality could be verified with automated tests leaving 
only a few manual tests remaining.



--
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-9762) App icon and Launch image for iPad Pro

2016-11-16 Thread Kerri Shotts (JIRA)

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

Kerri Shotts commented on CB-9762:
--

Yes; I just pulled in the PR so that's taken care of.

I'm going to write some automated tests to verify the feature, and once those 
get in, I'll close this issue.

> App icon and Launch image for iPad Pro
> --
>
> Key: CB-9762
> URL: https://issues.apache.org/jira/browse/CB-9762
> Project: Apache Cordova
>  Issue Type: Task
>  Components: iOS
>Affects Versions: 4.0.0
>Reporter: Manuel Martiarena
>Assignee: Kerri Shotts
>  Labels: cordova-ios, cordova-ios-4.3.x
> Fix For: cordova-ios@4.3.1
>
> Attachments: Default-Landscape@2x~ipad-pro.png, 
> Default-Portrait@2x~ipad-pro.png
>
>
> Provide app icon image and launch image for iPad Pro
> iPad Pro (@2x) App icon required 167x167
> iPad Pro (@2x) Launch image required 2048 x 2732 (portrait)
> 2732 x 2048 (landscape)
> https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html



--
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-11363) Screen Orientation plugin does not work on Android 6

2016-11-16 Thread Claudiu Chirilov (JIRA)

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

Claudiu Chirilov commented on CB-11363:
---

Hi,

Indeed, it doesn't work on Android 6.0 by default when trying to lock 
orientation. Throughout my tests, I've discovered that *window.screen* is an 
empty object. 

That is, a workaround for this one was to get the *window.orientation* value 
(which is an integer representing the degree of rotation) and using a 
_switch(){}_ I came up to strings, such as "portrait-primary", 
"landscape-primary" , etc.
For more information check the plugin's source. 

Hope this helps.

> Screen Orientation plugin does not work on Android 6
> 
>
> Key: CB-11363
> URL: https://issues.apache.org/jira/browse/CB-11363
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Screen Orientation
>Affects Versions: 1.4.2
>Reporter: Tony Homer
>  Labels: triaged
>
> Migrated from [Issue 
> #112|https://github.com/gbenvenuti/cordova-plugin-screen-orientation/issues/112]
> From [vukasin0|https://github.com/vukasin0]:
> {quote}
> Is this tested on Android 6 ?
> Currently this works as expected on Android 5.x but not on 6.
> {quote}



--
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-12117) Cordova-ios iphone 5 splashscreen stoped working between cordova-ios 4.1.1 - 4.2.0 (cordova default splashscreen is loaded)

2016-11-16 Thread Sergey Shakhnazarov (JIRA)

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

Sergey Shakhnazarov commented on CB-12117:
--

Hi [~davixz], it works for 9.0 and 9.3 simulators for me as well.
Could you test if this reproduces on a clean app (with just res/screen/... 
resources added and with config.xml updates corresponding to the splashscreen)?
In case it will fail too - could you upload a generated project somewhere so 
that I could try to compare it with working one?

> Cordova-ios iphone 5 splashscreen stoped working between cordova-ios 4.1.1 - 
> 4.2.0 (cordova default splashscreen is loaded)
> ---
>
> Key: CB-12117
> URL: https://issues.apache.org/jira/browse/CB-12117
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 6.0.0
> Environment: Cordova >= 6.0.0
>Reporter: David Azevedo
>  Labels: ios, no-repro, triaged, wfc
>
> Sorry if i created the issue on the wrong tracker, could not find a cordova 
> ios tracker
> I was using cordova ios 4.2.0 and had this problem, when i downgrade to 4.1.0 
> the problem was gone. I didnt had time to test if 4.1.1 also solves the 
> problem. Please fix as soon as possible so we can catch up the latests 
> cordova ios versions



--
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-12127) Add buildFlag support in build.json

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-12127.
---
Resolution: Fixed

Resolving this even though the doc issue is not pulled in, since we review PRs 
before building usually.

> Add buildFlag support in build.json
> ---
>
> Key: CB-12127
> URL: https://issues.apache.org/jira/browse/CB-12127
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: cordova-ios@4.3.1
>
>
> Add the "buildFlag" key here:
> https://github.com/apache/cordova-ios/blob/50a185a6ec9e1b231cf0cddaddb6f74101c93f38/bin/templates/scripts/cordova/lib/build.js#L79
> This is to support CB-11245



--
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-12127) Add buildFlag support in build.json

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-12127:
---

Note that these build flags will not override any settings in build.xcconfig 
(or its includes) since those supersede even xcodebuild command line arguments.

> Add buildFlag support in build.json
> ---
>
> Key: CB-12127
> URL: https://issues.apache.org/jira/browse/CB-12127
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: cordova-ios@4.3.1
>
>
> Add the "buildFlag" key here:
> https://github.com/apache/cordova-ios/blob/50a185a6ec9e1b231cf0cddaddb6f74101c93f38/bin/templates/scripts/cordova/lib/build.js#L79
> This is to support CB-11245



--
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-12127) Add buildFlag support in build.json

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah edited comment on CB-12127 at 11/16/16 9:40 PM:
-

Note that these build flags will not override any settings in build.xcconfig 
(or its includes) since those supersede even xcodebuild command line arguments.

The XCODE_XCCONFIG_FILE env var to a xcconfig file overrides them all.


was (Author: shazron):
Note that these build flags will not override any settings in build.xcconfig 
(or its includes) since those supersede even xcodebuild command line arguments.

> Add buildFlag support in build.json
> ---
>
> Key: CB-12127
> URL: https://issues.apache.org/jira/browse/CB-12127
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Shazron Abdullah
>Assignee: Shazron Abdullah
> Fix For: cordova-ios@4.3.1
>
>
> Add the "buildFlag" key here:
> https://github.com/apache/cordova-ios/blob/50a185a6ec9e1b231cf0cddaddb6f74101c93f38/bin/templates/scripts/cordova/lib/build.js#L79
> This is to support CB-11245



--
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-12156) Uploading image file to ASP.net backend

2016-11-16 Thread Jonathan Flower (JIRA)
Jonathan Flower created CB-12156:


 Summary: Uploading image file to ASP.net backend
 Key: CB-12156
 URL: https://issues.apache.org/jira/browse/CB-12156
 Project: Apache Cordova
  Issue Type: Bug
  Components: Plugin File Transfer
Affects Versions: 1.6.0
 Environment: Android
Reporter: Jonathan Flower


consistently getting this error from ASP.net when uploading from Android 5.1 
(only version of Android tested).
```Persits.Upload.1 error '800a0001'

Request.BinaryRead failed: Unspecified error```

Uploading works well on iOS.

 Workaround:
reverted back to 1.5.0.  Now uploading files is working on Android.



--
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-12084) iOS 4.3.0 CLI tools fail with Xcode 8.1

2016-11-16 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12084:
-

GitHub user kerrishotts opened a pull request:

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

CB-12084: Update project build settings & plist



### Platforms affected

 - iOS

### What does this PR do?

Addresses the bug discovered in CB-12084 where cleaning would corrupt the 
Xcode project. Also addresses the particular use case where the user was 
eliminating legacy launch images from the Xcode project -- this code will now 
take care of that automatically.

Here's the logic:

- If the user only specifies images for the storyboard, then the Xcode 
project should not attempt to use an asset catalog for launch images as well. 
This PR will remove that particular build property from the project 
(`ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME`)
- If the user specifies both storyboard images and legacy launch images, 
then nothing changes; build settings will continue to have 
`ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME` set to `LaunchImage`.
- If the user specifies ONLY legacy launch images, 
`ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME` is set to `LaunchImage`; this ensures 
that if the user has gone back to legacy images after having tried the 
storyboard images that the Xcode project still works as expected.

### What testing has been done on this change?

- Manual testing in each of the above scenarios
- `npm test` completed successfully with no errors (but it would as no 
tests currently trigger any of the above behavior)
- Travis CI is green.

### Checklist
- [X] [Reported an issue](http://cordova.apache.org/contribute/issues.html) 
in the JIRA database
- [X] Commit message follows the format: "CB-3232: (android) Fix bug with 
resolving file paths", where CB- is the JIRA ID & "android" is the platform 
affected.
- [X] Added automated test coverage as appropriate for this change.
- Note that automated test coverage is coming in a separate PR since 
that test coverage will test the feature as a whole (not just this change).

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

$ git pull https://github.com/kerrishotts/cordova-ios CB-12084

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

https://github.com/apache/cordova-ios/pull/279.patch

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

This closes #279


commit 7b8d7c3ef4bb6ce9c38adef61f3632e4ba6a8f32
Author: Kerri Shotts 
Date:   2016-11-16T05:15:16Z

CB-12084: Update project build settings & plist

If no legacy images are provided, we should remove the launch image asset
compiler setting. If legacy images are present, we should make sure it is
present. We also need to make sure to properly delete launch storyboard 
rather
than setting to undefined.




> iOS 4.3.0 CLI tools fail with Xcode 8.1
> ---
>
> Key: CB-12084
> URL: https://issues.apache.org/jira/browse/CB-12084
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.3.0
> Environment: OS-X Xcode 8.1
>Reporter: Nick Redding
>
> iOS 10.1 has been released, and requires Xcode 8.1 for builds.
> The Cordiva CLI build tools don't work with Xcode 8.1.
> Following is a transcript of a session illustrating this.
> {code}
> sh-3.2# cd Documents
> sh-3.2# cordova -v
> 6.4.0
> sh-3.2# cordova create hello
> Using detached cordova-create
> Creating a new cordova project.
> sh-3.2# cd hello
> sh-3.2# cordova platform add ios
> Adding ios project...
> Creating Cordova project for the iOS platform:
>   Path: platforms/ios
>   Package: io.cordova.hellocordova
>   Name: HelloCordova
> iOS project created with cordova-ios@4.3.0
> Discovered plugin "cordova-plugin-whitelist" in config.xml. Adding it to the 
> project
> Fetching plugin "cordova-plugin-whitelist@1" via npm
> Installing "cordova-plugin-whitelist" for ios
> sh-3.2# chmod -R 777 ../hello
> sh-3.2# chmod -R 777 ../hello/*
> # Now opened Xcode 81. with HelloCordova.xcodeproj, set “Automatically manage 
> signing” under project General tab and code signing identity to “iOS 
> Developer” under project Build Settings.
> # Now able to build and run the Hello app, as well as build and archive, so 
> everything is 100% OK with Xcode 8.1
> # However, now with the CLI, cordova clean iOS fails as follows. To make 
> matters worse, the clean is destructive, erasing the platforms/ios/www 
> directory!
> sh-3.2# ls platforms/ios
> .DS_Store HelloCordovac

[jira] [Commented] (CB-12084) iOS 4.3.0 CLI tools fail with Xcode 8.1

2016-11-16 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12084:
-

Github user kerrishotts commented on the issue:

https://github.com/apache/cordova-ios/pull/279
  
let there be tests!


> iOS 4.3.0 CLI tools fail with Xcode 8.1
> ---
>
> Key: CB-12084
> URL: https://issues.apache.org/jira/browse/CB-12084
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.3.0
> Environment: OS-X Xcode 8.1
>Reporter: Nick Redding
>
> iOS 10.1 has been released, and requires Xcode 8.1 for builds.
> The Cordiva CLI build tools don't work with Xcode 8.1.
> Following is a transcript of a session illustrating this.
> {code}
> sh-3.2# cd Documents
> sh-3.2# cordova -v
> 6.4.0
> sh-3.2# cordova create hello
> Using detached cordova-create
> Creating a new cordova project.
> sh-3.2# cd hello
> sh-3.2# cordova platform add ios
> Adding ios project...
> Creating Cordova project for the iOS platform:
>   Path: platforms/ios
>   Package: io.cordova.hellocordova
>   Name: HelloCordova
> iOS project created with cordova-ios@4.3.0
> Discovered plugin "cordova-plugin-whitelist" in config.xml. Adding it to the 
> project
> Fetching plugin "cordova-plugin-whitelist@1" via npm
> Installing "cordova-plugin-whitelist" for ios
> sh-3.2# chmod -R 777 ../hello
> sh-3.2# chmod -R 777 ../hello/*
> # Now opened Xcode 81. with HelloCordova.xcodeproj, set “Automatically manage 
> signing” under project General tab and code signing identity to “iOS 
> Developer” under project Build Settings.
> # Now able to build and run the Hello app, as well as build and archive, so 
> everything is 100% OK with Xcode 8.1
> # However, now with the CLI, cordova clean iOS fails as follows. To make 
> matters worse, the clean is destructive, erasing the platforms/ios/www 
> directory!
> sh-3.2# ls platforms/ios
> .DS_Store HelloCordovacordova 
> pods-debug.xcconfig
> .gitignoreHelloCordova.xcodeproj  ios.json
> pods-release.xcconfig
> CordovaLibHelloCordova.xcworkspaceplatform_www
> www
> sh-3.2# cordova clean ios
> === CLEAN TARGET CordovaLib OF PROJECT CordovaLib WITH CONFIGURATION Debug ===
> …
> === CLEAN TARGET HelloCordova OF PROJECT HelloCordova WITH CONFIGURATION 
> Debug ===
> Check dependencies
> [BCEROR]No profiles for 'io.cordova.hellocordova' were found:  Xcode couldn't 
> find a provisioning profile matching 'io.cordova.hellocordova'.
> [BCEROR]Code signing is required for product type 'Application' in SDK 'iOS 
> 10.1'
> …
> ** CLEAN SUCCEEDED **
> === CLEAN TARGET CordovaLib OF PROJECT CordovaLib WITH CONFIGURATION Release 
> ===
> …
> === CLEAN TARGET HelloCordova OF PROJECT HelloCordova WITH CONFIGURATION 
> Release ===
> Check dependencies
> [BCEROR]No profiles for 'io.cordova.hellocordova' were found:  Xcode couldn't 
> find a provisioning profile matching 'io.cordova.hellocordova'.
> [BCEROR]Code signing is required for product type 'Application' in SDK 'iOS 
> 10.1'
> …
> ** CLEAN SUCCEEDED **
> sh-3.2# ls platforms/ios
> .DS_Store HelloCordovacordova 
> pods-debug.xcconfig
> .gitignoreHelloCordova.xcodeproj  ios.json
> pods-release.xcconfig
> CordovaLibHelloCordova.xcworkspaceplatform_www
> sh-3.2# 
> {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-12141) white app screen after camera overlay shown on iPad

2016-11-16 Thread Michael Schmidt (JIRA)

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

Michael Schmidt commented on CB-12141:
--

just keep in landscape mode - no rotation needed.

tested on an iPad Air - 9.7 inch.

> white app screen after camera overlay shown on iPad
> ---
>
> Key: CB-12141
> URL: https://issues.apache.org/jira/browse/CB-12141
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Statusbar
>Affects Versions: Master
> Environment: iOS 9.3.5
> cordova 6.4.0
> cordova-plugin-camera 2.3.0
> cordova-plugin-statusbar 2.2.1-dev (current master branch)
>Reporter: Michael Schmidt
>Assignee: jcesarmobile
>  Labels: ios
>
> h4. steps to reproduce
> * create cordova app
> {code}
> cordova create MyAppTest33
> cd MyAppTest33/
> cordova platform add ios
> cordova plugin add https://github.com/apache/cordova-plugin-statusbar.git 
> --save
> cordova plugin add cordova-plugin-camera --variable 
> CAMERA_USAGE_DESCRIPTION=" " --variable PHOTOLIBRARY_USAGE_DESCRIPTION=" " 
> --save
> {code}
> * add camera sample code to www folder
> {code}
> https://github.com/Icenium/Sample-Camera/blob/master/Camera%20Sample/index.html
> https://github.com/Icenium/Sample-Camera/blob/master/Camera%20Sample/scripts/main.js
> https://github.com/Icenium/Sample-Camera/blob/master/Camera%20Sample/styles/theme.css
> {code}
> * change config.xml to landscape app
> {code}
> 
> {code}
> h4. action: open camera on iPad
> * open app on real device: iPad
> * take picture from camera (or open camera & cancel)
> h4. problem: App screen turns white
> * completely white screen - web app is completely gone
> h4. root cause is the statusbar plugin on iPad in landscape app
> * it works well ..
> ** with Orientation "portrait" 
> ** on iPhone
> ** without statusbar plugin



--
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-9148) Add support for file picker in InAppBrowser

2016-11-16 Thread Darron Park (JIRA)

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

Darron Park commented on CB-9148:
-

Hmm...

Actually I found some bug that this module works only one time.
So I'm going to update it today :D

> Add support for file picker in InAppBrowser
> ---
>
> Key: CB-9148
> URL: https://issues.apache.org/jira/browse/CB-9148
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin InAppBrowser
>Affects Versions: 3.5.0, 3.6.0
> Environment: problem in Android, the camera roll never opens  (iOS 
> working OK)
>Reporter: Tomas Rawski
>  Labels: Android, camera, file, input, roll, triaged
>
> reproduce : 
> open the inAppBrowser: http://www.plupload.com/examples
> click in Add files.
> This works ok when I call it from the _system or _self. But not for _blank.



--
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-12133) Drop npmsearch as source of packages

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12133:
--
Issue Type: Improvement  (was: Bug)

> Drop npmsearch as source of packages
> 
>
> Key: CB-12133
> URL: https://issues.apache.org/jira/browse/CB-12133
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Registry Web (deprecated)
>Reporter: Peter Bakondy
>
> I. npmsearch stops upgrading many times
> Many times the registry does not list the latest changes.
> It should display the latest changes with a reasonable delay (10min / 1h) but 
> I saw 5-10 days long intervals without an upgrade.
> It is easy to detect here:
> https://cordova.apache.org/plugins/?sortBy=Recently%20Updated
> II. npmsearch result list is unreliable
> There are missing packages in the result list.
> Further details:
> https://github.com/nodesource/npmsearch/issues/42
> Q: why don't you use npmjs.com instead?



--
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-12144) App icon not displaying

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12144:
--
Component/s: Android

> App icon not displaying
> ---
>
> Key: CB-12144
> URL: https://issues.apache.org/jira/browse/CB-12144
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: sulthan allaudeen
>
> Previously i have given the app icon inside www/img/logo.png
> It displayed the default app icon, 
> but now, i have updated the app icon res/mipmap-mdpi/icon.png. 
> Still it is displaying the default app icon only. How can i fix this ?



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

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



[jira] [Updated] (CB-12138) inAppBrowser crashing in iOS 10

2016-11-16 Thread Shazron Abdullah (JIRA)

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

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

> inAppBrowser crashing in iOS 10
> ---
>
> Key: CB-12138
> URL: https://issues.apache.org/jira/browse/CB-12138
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
> Environment: iOS
>Reporter: tariq lamghari
>  Labels: crash, inappbrowser, ios10, issue, memory
>
> When trying to open a website on my AngularJS application using inAppBrowser 
> (cordova-plugin-inappbrowser 1.5.0 - cordova 6.4.0 - iOS 10) the application 
> crashes and I get the following error on my xCode console:
> Message from debugger: Terminated due to memory issue
> The same website is working fine on iOS 9.
> Please let me know if you need more info
> Thank you



--
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-12041) cordova-plugin-media-capture does not set or restore entries such as CAMERA_USAGE_DESCRIPTION

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12041:
--
Environment: iOS
Component/s: (was: iOS)
 Plugin Media Capture

> cordova-plugin-media-capture does not set or restore entries such as 
> CAMERA_USAGE_DESCRIPTION
> -
>
> Key: CB-12041
> URL: https://issues.apache.org/jira/browse/CB-12041
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Media Capture
>Affects Versions: Master
> Environment: iOS
>Reporter: Christopher Mindus
>
> An entry in config.xml such as:
> 
> 
> 
>   
>   
> does not update the ios.json and *-Info.plist files with the corresponding 
> entries NSCameraUsageDescription, NSMicrophoneUsageDescription and 
> NSPhotoLibraryUsageDescription.
> This applies when performing "cordova platform add ios [--save]" as well as 
> when changing the main config.xml file with new or updated text entries 
> and/or variables.
> The main config.xml file should update the other files (ios.json and *.plist).



--
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-11213) Multiple .svg not displaying

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-11213.
---
Resolution: Invalid

> Multiple .svg not displaying
> 
>
> Key: CB-11213
> URL: https://issues.apache.org/jira/browse/CB-11213
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.5.0
> Environment: Windows 10 Desktop ios 9.3.1 iPhone 5 and iPad
>Reporter: Ian Howse
>
> If 1 .svg is displayed in 

[jira] [Commented] (CB-12121) Adding ios 4.3.0 by path or by version number fails

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-12121:
---

Seems similar to CB-11803

> Adding ios 4.3.0 by path or by version number fails
> ---
>
> Key: CB-12121
> URL: https://issues.apache.org/jira/browse/CB-12121
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.3.0
> Environment: Cordova 6.4.0
> Mac OS X 10.11.6
>Reporter: Dennis Torres
>Priority: Critical
>
> The following cli command succeeds:
> *cordova platforms add ios*
> The following cli commands fail:
> *cordova platforms add ios@4.3.0*
> *cordova platforms add node_modules/cordova-ios*
> and with the following error:
> *Error during processing of action! Attempting to revert...*
> *Error: Uh oh!*
> *Cannot find module '/Users/psirenny/Dropbox/Private/dev/blrrt-web-
> app/build/cordova/platforms/ios/pods.json'*
> It seems like the error occurs within the preparePlatforms function.



--
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-12143) Splash Screen on Ipad has wrong orientation and image

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12143:
--
Environment: iOS
Component/s: Plugin SplashScreen

> Splash Screen on Ipad has wrong orientation and image
> -
>
> Key: CB-12143
> URL: https://issues.apache.org/jira/browse/CB-12143
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
> Environment: iOS
>Reporter: Svante Jacobsen
>  Labels: ios, no-repro, triaged
>
> The splash screen on Ipad is not working. When app is started and splash 
> screen is supposed to show, the screen is first rotated and then showing a 
> splash screen for landscape orientation when holding device in portrait 
> orientation. Also, the splash image shown is the Cordova default, not my 
> design.
> Using Phonegap Build cli-6.3.0 (4.2.0 / 5.2.1 / 4.4.1) and 
> cordova-plugin-splashscreen 4.0.0.
> Android and Iphone 4, 5, 6 all work. The only issue is with Ipad (eg. model 
> A1474 and A1416).
> Affected app (#693828) has setting to force portrait orientation:
> 
> 
> I have tried to include more splash screen images and resolutions and even 
> landscape ones but they all seems to be overridden by this problem.



--
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-12115) Share extension plugin

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12115:
--
Environment: iOS
Component/s: AllPlugins

> Share extension plugin
> --
>
> Key: CB-12115
> URL: https://issues.apache.org/jira/browse/CB-12115
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: AllPlugins
> Environment: iOS
>Reporter: Aaron Rosen
>
> It would be awesome if there was a plugin that implemented the share 
> extension on iphone. I was able to get this sorta working following this: 
> http://stackoverflow.com/questions/33105698/cordova-sharing-browser-url-to-my-ios-app-clipper-ios-share-extension/34064913
> The problem though I'm facing is this code works by opening your app to pass 
> data to it. The problem with that is there is no way to automatically close 
> your ios app after you've completed the action (i.e: save url from safari 
> etc). 



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

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



[jira] [Updated] (CB-12065) How to get latitude and longitude with ionic framework in Android

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12065:
--
Environment: Android
Component/s: Plugin Geolocation

> How to get latitude and longitude with ionic framework in Android
> -
>
> Key: CB-12065
> URL: https://issues.apache.org/jira/browse/CB-12065
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Geolocation
> Environment: Android
>Reporter: Rachita Mathur
>
> Hi Team
> I am not able to fetch latitude longitude in android using the below code.
> The code is working fine for IOS.
> var options = { timeout: 3000, enableHighAccuracy: true };
> document.addEventListener('deviceready', function () {
> navigator.geolocation.getCurrentPosition(onSuccess, onError, options);
> });
> function onSuccess(position) 
> {
> latvalue = position.coords.latitude;
> lngvalue = position.coords.longitude;
> timestamp = position.timestamp;
> alert(latvalue);
> }
> function onError(error)
> {
> alert(error);
> }
> Please suggest what need to be done.



--
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-12050) Add support for integrating Cordova for iOS with Carthage

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-12050:
---

CocoaPods support shipped with cordova-ios 4.3.0

> Add support for integrating Cordova for iOS with Carthage
> -
>
> Key: CB-12050
> URL: https://issues.apache.org/jira/browse/CB-12050
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: iOS
>Reporter: Dan Ursu
>
> Currently the documentation doesn't clearly state how one would integrate the 
> cordova framework into an iOS app using carthage. It would be nice if there 
> would be support. Same with cocoapods.



--
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-12050) Add support for integrating Cordova for iOS with Carthage

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12050:
--
Component/s: iOS

> Add support for integrating Cordova for iOS with Carthage
> -
>
> Key: CB-12050
> URL: https://issues.apache.org/jira/browse/CB-12050
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Reporter: Dan Ursu
>
> Currently the documentation doesn't clearly state how one would integrate the 
> cordova framework into an iOS app using carthage. It would be nice if there 
> would be support. Same with cocoapods.



--
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-12050) Add support for integrating Cordova for iOS with Carthage

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12050:
--
Issue Type: New Feature  (was: Bug)

> Add support for integrating Cordova for iOS with Carthage
> -
>
> Key: CB-12050
> URL: https://issues.apache.org/jira/browse/CB-12050
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: iOS
>Reporter: Dan Ursu
>
> Currently the documentation doesn't clearly state how one would integrate the 
> cordova framework into an iOS app using carthage. It would be nice if there 
> would be support. Same with cocoapods.



--
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-12057) Create JUnit tests

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12057:
--
Component/s: Android

> Create JUnit tests
> --
>
> Key: CB-12057
> URL: https://issues.apache.org/jira/browse/CB-12057
> Project: Apache Cordova
>  Issue Type: Sub-task
>  Components: Android
>Reporter: Jesse MacFadyen
>Assignee: sterling gerritz
>
> 1. create a new android studio project ( in cordova-android/junit/ )
> 2. follow the embedded workflow docs to add the cordova-android bits to it
> 3. write junit tests that exercise cordova public apis 



--
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-11982) create new cordova config command

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11982:
--
Component/s: CordovaLib
 CLI

> create new cordova config command
> -
>
> Key: CB-11982
> URL: https://issues.apache.org/jira/browse/CB-11982
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: CLI, CordovaLib
>Reporter: Steve Gill
>  Labels: cordova-7.0.0
>
> Model it after npm config command. https://docs.npmjs.com/cli/config
> This issue could use a cordova-discuss PR before implementing. 
> Might want to migrate telemetry and update-notifier config into this. 
> Currently, telemetry and update-notifier use 
> https://github.com/yeoman/configstore under the hood. Stores configs in 
> ~/.config/configstore/



--
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-12016) remove plugin ID mapping

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-12016:
--
Component/s: CordovaLib
 CLI

> remove plugin ID mapping
> 
>
> Key: CB-12016
> URL: https://issues.apache.org/jira/browse/CB-12016
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: CLI, CordovaLib
>Reporter: Steve Gill
>  Labels: cordova-7.0.0
> Fix For: 7.0.0
>
>
> For cordova@7, we can remove the cordova-registry-mapper module and remove 
> the automatic plugin mapping we do



--
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-11934) iOS splash screen deformed when device connected to personal hotspot

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11934:
--
Component/s: Plugin SplashScreen

> iOS splash screen deformed when device connected to personal hotspot
> 
>
> Key: CB-11934
> URL: https://issues.apache.org/jira/browse/CB-11934
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
>Affects Versions: 6.3.1
> Environment: iOS 4.2.1
>Reporter: mseppae
>Priority: Minor
>
> When personal hotspot is turned on and a device is connected to it, the 
> startup image is deformed on app launch.



--
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-11925) OpenJDK 9 version string not detected by regex in check_java

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11925:
--
Component/s: Android

> OpenJDK 9 version string not detected by regex in check_java
> 
>
> Key: CB-11925
> URL: https://issues.apache.org/jira/browse/CB-11925
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Robbie Cahill
>
> Running OpenJDK 9 on Ubuntu, javac -version returns
> {code}
> javac 9-internal
> {code}
> Down the bottom of check_java in check_reqs.js you have the following 
> (comments added to illustrate the problem):
> {code}
> }).then(function (output) {
> console.log(output); //outputs javac 9-internal
> console.log(/javac ((?:\d+\.)+(?:\d+))/i.exec(output)); //outputs 
> null
> var match = /javac ((?:\d+\.)+(?:\d+))/i.exec(output)[1]; 
> //Error: Cannot read property '1' of null
> return match && match[1];
> });
> {code}
> It looks like the regex fails to match the string, which breaks cordova build 
> / run. In any case, perhaps a nice error message when a version string is 
> unknown or unsupported would be better than the unknown property error?
> This is using the latest cordova 6.3.1



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

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



[jira] [Updated] (CB-11911) 'Cordova/CDVAppDelegate.h' file not found in ios archive process Xcode 7.1

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11911:
--
Component/s: iOS

> 'Cordova/CDVAppDelegate.h' file not found in ios archive process Xcode 7.1
> --
>
> Key: CB-11911
> URL: https://issues.apache.org/jira/browse/CB-11911
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 3.5.0
>Reporter: Vishal Rajole
>
> In file included from 
> /Users/Developer/Code/cordova_update/angularjs/phonegap/platforms/ios/Phonegap/Classes/AppDelegate.m:28:
> /Users/Developer/Code/cordova_update/angularjs/phonegap/platforms/ios/Phonegap/Classes/AppDelegate.h:29:9:
>  fatal error: 'Cordova/CDVAppDelegate.h' file not found
> #import 
> ^
> 1 error generated.



--
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-11896) cordova-plugin-vibration does not work if System volume muted

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11896:
--
Environment: Android
Component/s: Plugin Vibration
Summary: cordova-plugin-vibration does not work if System volume muted  
(was: cordova-plugin-vibrationdoes not work if System volume muted)

> cordova-plugin-vibration does not work if System volume muted
> -
>
> Key: CB-11896
> URL: https://issues.apache.org/jira/browse/CB-11896
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Vibration
> Environment: Android
>Reporter: james lowrey
>
> I believe you can override this in a native Android app, but not in a Cordova 
> app apparently.
> http://stackoverflow.com/questions/26596228/cordova-vibrate-is-not-working



--
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-12084) iOS 4.3.0 CLI tools fail with Xcode 8.1

2016-11-16 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12084:
-

Github user codecov-io commented on the issue:

https://github.com/apache/cordova-ios/pull/279
  
## [Current 
coverage](https://codecov.io/gh/apache/cordova-ios/pull/279?src=pr) is 60.58% 
(diff: 76.47%)
> Merging [#279](https://codecov.io/gh/apache/cordova-ios/pull/279?src=pr) 
into [master](https://codecov.io/gh/apache/cordova-ios/branch/master?src=pr) 
will increase coverage by **0.36%**

```diff
@@ master   #279   diff @@
==
  Files12 12  
  Lines  1325   1360+35   
  Methods 202208 +6   
  Messages  0  0  
  Branches224229 +5   
==
+ Hits798824+26   
- Misses  527536 +9   
  Partials  0  0  
```

> Powered by [Codecov](https://codecov.io?src=pr). Last update 
[99219c1...7b8d7c3](https://codecov.io/gh/apache/cordova-ios/compare/99219c1c4cd8d1000fb89a15449f2d25a57bef41...7b8d7c3ef4bb6ce9c38adef61f3632e4ba6a8f32?src=pr)


> iOS 4.3.0 CLI tools fail with Xcode 8.1
> ---
>
> Key: CB-12084
> URL: https://issues.apache.org/jira/browse/CB-12084
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 4.3.0
> Environment: OS-X Xcode 8.1
>Reporter: Nick Redding
>
> iOS 10.1 has been released, and requires Xcode 8.1 for builds.
> The Cordiva CLI build tools don't work with Xcode 8.1.
> Following is a transcript of a session illustrating this.
> {code}
> sh-3.2# cd Documents
> sh-3.2# cordova -v
> 6.4.0
> sh-3.2# cordova create hello
> Using detached cordova-create
> Creating a new cordova project.
> sh-3.2# cd hello
> sh-3.2# cordova platform add ios
> Adding ios project...
> Creating Cordova project for the iOS platform:
>   Path: platforms/ios
>   Package: io.cordova.hellocordova
>   Name: HelloCordova
> iOS project created with cordova-ios@4.3.0
> Discovered plugin "cordova-plugin-whitelist" in config.xml. Adding it to the 
> project
> Fetching plugin "cordova-plugin-whitelist@1" via npm
> Installing "cordova-plugin-whitelist" for ios
> sh-3.2# chmod -R 777 ../hello
> sh-3.2# chmod -R 777 ../hello/*
> # Now opened Xcode 81. with HelloCordova.xcodeproj, set “Automatically manage 
> signing” under project General tab and code signing identity to “iOS 
> Developer” under project Build Settings.
> # Now able to build and run the Hello app, as well as build and archive, so 
> everything is 100% OK with Xcode 8.1
> # However, now with the CLI, cordova clean iOS fails as follows. To make 
> matters worse, the clean is destructive, erasing the platforms/ios/www 
> directory!
> sh-3.2# ls platforms/ios
> .DS_Store HelloCordovacordova 
> pods-debug.xcconfig
> .gitignoreHelloCordova.xcodeproj  ios.json
> pods-release.xcconfig
> CordovaLibHelloCordova.xcworkspaceplatform_www
> www
> sh-3.2# cordova clean ios
> === CLEAN TARGET CordovaLib OF PROJECT CordovaLib WITH CONFIGURATION Debug ===
> …
> === CLEAN TARGET HelloCordova OF PROJECT HelloCordova WITH CONFIGURATION 
> Debug ===
> Check dependencies
> [BCEROR]No profiles for 'io.cordova.hellocordova' were found:  Xcode couldn't 
> find a provisioning profile matching 'io.cordova.hellocordova'.
> [BCEROR]Code signing is required for product type 'Application' in SDK 'iOS 
> 10.1'
> …
> ** CLEAN SUCCEEDED **
> === CLEAN TARGET CordovaLib OF PROJECT CordovaLib WITH CONFIGURATION Release 
> ===
> …
> === CLEAN TARGET HelloCordova OF PROJECT HelloCordova WITH CONFIGURATION 
> Release ===
> Check dependencies
> [BCEROR]No profiles for 'io.cordova.hellocordova' were found:  Xcode couldn't 
> find a provisioning profile matching 'io.cordova.hellocordova'.
> [BCEROR]Code signing is required for product type 'Application' in SDK 'iOS 
> 10.1'
> …
> ** CLEAN SUCCEEDED **
> sh-3.2# ls platforms/ios
> .DS_Store HelloCordovacordova 
> pods-debug.xcconfig
> .gitignoreHelloCordova.xcodeproj  ios.json
> pods-release.xcconfig
> CordovaLibHelloCordova.xcworkspaceplatform_www
> sh-3.2# 
> {code}



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

-
To unsubscribe, e-mail:

[jira] [Updated] (CB-11891) Online/Offline event not fired under ios10

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11891:
--
Environment: iOS
Component/s: Plugin Network Information

> Online/Offline event not fired under ios10
> --
>
> Key: CB-11891
> URL: https://issues.apache.org/jira/browse/CB-11891
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Network Information
> Environment: iOS
>Reporter: Alexandru Ghioroae
>
> The online/offline event seem to stop working on ios10



--
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-11890) Remove repositories from ReviewBoard

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah commented on CB-11890:
---

You can remove them.

> Remove repositories from ReviewBoard
> 
>
> Key: CB-11890
> URL: https://issues.apache.org/jira/browse/CB-11890
> Project: Apache Cordova
>  Issue Type: Task
>Reporter: Nate Cole
>
> It appears as though Cordova on ReviewBoard is no longer active.  Can the 40+ 
> repositories be removed or consolidated?  (On ReviewBoard only).  Feel free 
> to reassign to INFRA if need be.
> It looks like Cordova hasn't been active on ReviewBoard for over 2.5 years.



--
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-11840) cordova platform update ios overwrites AppDelegate.m

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11840:
--
Component/s: iOS

> cordova platform update ios overwrites AppDelegate.m
> 
>
> Key: CB-11840
> URL: https://issues.apache.org/jira/browse/CB-11840
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.3.1
> Environment: Mac OS X 10.11.6
>Reporter: Adriano Di Giovanni
>




--
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-11704) Separate configuration into multiple xml files

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11704:
--
Component/s: CLI

> Separate configuration into multiple xml files
> --
>
> Key: CB-11704
> URL: https://issues.apache.org/jira/browse/CB-11704
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: CLI
>Reporter: Julian Grinblat
>
> When building icons or splashscreens with third party modules, not only do 
> these tools output image files, they also output the required xml to be 
> included inside config.xml. It would be very useful to be have separate xml 
> files that are either explicitly included or implicitly. I'm not very sure 
> what the best way to accomplish this would be. For your consideration.



--
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-11701) Android Platform Fails after Minimatch Update

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11701:
--
Component/s: Android

> Android Platform Fails after Minimatch Update
> -
>
> Key: CB-11701
> URL: https://issues.apache.org/jira/browse/CB-11701
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
> Environment: Mac Sierra 10.12 Beta
>Reporter: Erhan Yaşar
>Priority: Minor
>  Labels: cannot-reproduce, wfc
>
> First I don't know if you have already noticed issue #2952 and many others on 
> GitHub but that's probably because of that your PhoneGap application quit 
> working flawlessly. After a while it started to doesn't open and later I 
> found it's because of just a plugin but then i found out that #2952 minimatch 
> update issue. After i uninstall npm & node reinstalled with a new version of 
> minimatch hence it's still not working on mobile ios even it says 'success!' 
> Besides if I add 'platform android' it starts not to work again and just 
> representing white page when I open PhoneGap desktop app. Any help would be 
> perfect,
> 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] [Updated] (CB-11672) camera.ui.spec.12.20 Combining options. sourceType: SAVEDPHOTOALBUM, destinationType: DATA_URL, encodingType: JPEG, allowEdit: false, correctOrientation: false

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11672:
--
Environment: iOS
Component/s: Plugin Camera

> camera.ui.spec.12.20 Combining options. sourceType: SAVEDPHOTOALBUM, 
> destinationType: DATA_URL, encodingType: JPEG, allowEdit: false, 
> correctOrientation: false
> ---
>
> Key: CB-11672
> URL: https://issues.apache.org/jira/browse/CB-11672
> Project: Apache Cordova
>  Issue Type: Test
>  Components: Plugin Camera
> Environment: iOS
>Reporter: Sergey Shakhnazarov
>Priority: Minor
>  Labels: flaky, found-by-ci, ios, triaged
>
> Looks like a flaky Appium issue related to "autoAcceptAlerts" desired 
> capability.
> {noformat}
>   ✗ camera.ui.spec.12.20 Combining options. sourceType: SAVEDPHOTOALBUM, 
> destinationType: DATA_URL, encodingType: JPEG, allowEdit: false, 
> correctOrientation: false
> - Failed: 
> [executeAsync(null,["appium_camera_promise_19",{"destinationType":0,"sourceType":2,"encodingType":0,"allowEdit":false,"saveToPhotoAlbum":false,"correctOrientation":false}])]
>  Error response status: 17, , JavaScriptError - An error occurred while 
> executing user supplied JavaScript. Selenium error: undefined is not an 
> object (evaluating 'possibleAlert.buttons')
> - Error: Timeout - Async callback was not invoked within timeout 
> specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
> paramedic-appium: Error: [execute(null,[])] Error response status: 17, , 
> JavaScriptError - An error occurred while executing user supplied JavaScript. 
> Selenium error: Return statements are only valid inside functions.
> paramedic-appium: Uncaught exception! Killing server and exiting in 2 
> seconds...
> {noformat}



--
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-11628) Cordova Screen Orientation Plugin

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11628:
--
Component/s: Plugin Screen Orientation

> Cordova Screen Orientation Plugin
> -
>
> Key: CB-11628
> URL: https://issues.apache.org/jira/browse/CB-11628
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: Plugin Screen Orientation
> Environment: Android,iOS, Windows
>Reporter: Vishal Mishra
>Assignee: Vishal Mishra
>   Original Estimate: 336h
>  Remaining Estimate: 336h
>
> Make sure the orientation plugin matches the spec.
> We should also include tests.
> repo:  https://github.com/apache/cordova-plugin-screen-orientation
> spec: https://www.w3.org/TR/screen-orientation/



--
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-11607) breakout cordova-create from cordova-lib

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11607:
--
Component/s: cordova-create

> breakout cordova-create from cordova-lib
> 
>
> Key: CB-11607
> URL: https://issues.apache.org/jira/browse/CB-11607
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-create
>Reporter: Steve Gill
>Assignee: Caryn Tran
>
> As the title suggests, lets breakout cordova-create from cordova-lib and 
> publish it as its own module. It can live in the cordova-lib git repo. 



--
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-11607) breakout cordova-create from cordova-lib

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-11607.
---
Resolution: Fixed

> breakout cordova-create from cordova-lib
> 
>
> Key: CB-11607
> URL: https://issues.apache.org/jira/browse/CB-11607
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-create
>Reporter: Steve Gill
>Assignee: Caryn Tran
>
> As the title suggests, lets breakout cordova-create from cordova-lib and 
> publish it as its own module. It can live in the cordova-lib git repo. 



--
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-11660) Some plugins crash on iOS 10 because of permissions

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-11660.
---
Resolution: Fixed

All subtasks resolved.

> Some plugins crash on iOS 10 because of permissions
> ---
>
> Key: CB-11660
> URL: https://issues.apache.org/jira/browse/CB-11660
> Project: Apache Cordova
>  Issue Type: Bug
> Environment: ios 10
>Reporter: jcesarmobile
>Assignee: jcesarmobile
>  Labels: ios, plugins
>
> Some plugins are crashing because on iOS 10 they require an usage description 
> key in the info.plist
> This issue is to investigate which ones and create new issues as subtasks of 
> this one.
> Check plugins that might use this keys
> NSBluetoothPeripheralUsageDescription
> NSCalendarsUsageDescription
> NSCameraUsageDescription (media capture plugin?)
> NSMicrophoneUsageDescription (media capture plugin?)
> NSMotionUsageDescription (accelerometer plugin?)
> NSRemindersUsageDescription
> And this ones should be able to be set from a plugin install variable 
> (geolocation and camera plugin)
> NSLocationAlwaysUsageDescription
> NSLocationUsageDescription
> NSLocationWhenInUseUsageDescription



--
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-11604) make it possible to add uses-permission tag of Android in config.xml

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11604:
--
Component/s: Android
 roid

> make it possible to add uses-permission tag of Android in config.xml
> 
>
> Key: CB-11604
> URL: https://issues.apache.org/jira/browse/CB-11604
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Android
>Reporter: zhuisui
>




--
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-11604) make it possible to add uses-permission tag of Android in config.xml

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11604:
--
Component/s: (was: roid)

> make it possible to add uses-permission tag of Android in config.xml
> 
>
> Key: CB-11604
> URL: https://issues.apache.org/jira/browse/CB-11604
> Project: Apache Cordova
>  Issue Type: New Feature
>  Components: Android
>Reporter: zhuisui
>




--
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-11502) Including Camera permissions causes app not to sleep

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11502:
--
Component/s: Android

> Including Camera permissions causes app not to sleep
> 
>
> Key: CB-11502
> URL: https://issues.apache.org/jira/browse/CB-11502
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: Jason Bourbeau
>
> Including camera permissions with or without any plugins on the latest 
> version of cordova and android cause the following logs to occur and will not 
> let the phone sleep. The following is just a clip as is keeps barfing the 
> following out non-stop until you close the app.
> 11710   D   Camera-JNI   Using callback buffer from queue of length 3 
> 11633   -   I   CameraFramework  handleMessage: 16 
> 11633   -   D   Camera-JNI   Adding callback buffer to queue, 3 total 
> 11658   I   BufferQueueProducer  
> [unnamed-11633-0](this:0xef0c7c00,id:0,api:4,p:290,c:11633) queueBuffer: slot 
> 6 is dropped, handle=0xd67aa660 
> 11633   11710   D   Camera-JNI   Using callback buffer from queue of length 3 
> 11633   -   I   CameraFramework  handleMessage: 16 
> 11633   -   D   Camera-JNI   Adding callback buffer to queue, 3 total 
> 11633   11658   I   BufferQueueProducer  
> [unnamed-11633-0](this:0xef0c7c00,id:0,api:4,p:290,c:11633) queueBuffer: slot 
> 0 is dropped, handle=0xdbc50d80 
> 11633   11710   D   Camera-JNI   Using callback buffer from queue of length 3 
> 11633   -   I   CameraFramework  handleMessage: 16 
> 11633   -   D   Camera-JNI   Adding callback buffer to queue, 3 total 



--
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-11494) Cordova SplashScreen is not showing

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11494:
--
Environment: iOS
Component/s: Plugin SplashScreen

> Cordova SplashScreen is not showing
> ---
>
> Key: CB-11494
> URL: https://issues.apache.org/jira/browse/CB-11494
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin SplashScreen
> Environment: iOS
>Reporter: Spyrus 
>
> Used the recent template of phonegap
> including 
> 
> I tried everything in config.xml even in index.js to show splashscreen but no 
> luck
> I simulate my application on my iPad and iPhone using PhoneGap mobile 
> application
> Any help?



--
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-11453) InAppBrowser executeScript() does not return when used concurrently on iphone

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11453:
--
Environment: iOS
Component/s: Plugin InAppBrowser

> InAppBrowser executeScript() does not return when used concurrently on iphone
> -
>
> Key: CB-11453
> URL: https://issues.apache.org/jira/browse/CB-11453
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
> Environment: iOS
>Reporter: Aaron Rosen
>
> While using the cordova-plugin-inappbroswer version 1.4.0 I noticed that if I 
> make concurrent requests with win.executeScript() that some times a callback 
> never get called.  I've been able to reproduce this problem on iOS and not 
> Android though.   
> For example:
> {code}
> var win = window.open( "https://google.com";, "_blank");
> win.addEventListener( "loadstop", function() {
> var loop = setInterval(function() {
>   win.executeScript({
>code: "localStorage.getItem( 'foo' )"
> },function( values ) {
>console.log("Only seen once...");
>console.log(values);
> }
> });
>  
> var loop = setInterval(function() {
>   win.executeScript({
>code: "localStorage.getItem( 'bar' )"
> },function( values ) {
>console.log("Only seen once...");
>console.log(values);
> }
> });
>   
> })
> {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] [Updated] (CB-11390) Released Media are not removed from Android's pausedForFocus or pausedForPhone lists, generating NullPointerException and crash.

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-11390:
--
Component/s: Android

> Released Media are not removed from Android's pausedForFocus or 
> pausedForPhone lists, generating NullPointerException and crash.
> 
>
> Key: CB-11390
> URL: https://issues.apache.org/jira/browse/CB-11390
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Affects Versions: 6.1.1
> Environment: Mac OS X 10.11.5, Cordova 6.1.1, Cordova android 5.1.1, 
> Nexus 5X running Android 6.0.1
>Reporter: Dale Beermann
>
> When changing views, the {{AudioHandler}} receives {{onAudioFocusChange}} and 
> adds all running media to a {{pausedForFocus}} list. With Angular, a 
> controller's life cycle might not exactly match what Android is seeing for 
> this event (I'm a bit unclear on how the focus change events are fired). So 
> if that media object is later released, it needs to be removed from those 
> lists in {{AudioHandler.release}}:
> {quote}
> pausedForFocus.remove(audio);
> pausedForPhone.remove(audio);
> {quote}
> If this does not happen, the {{AudioHandler}} receives another 
> {{onAudioFocusChange}} event and calls {{resumeAllGainedFocus}} which calls 
> {{AudioPlayer.startPlaying}} with a {{null}} file, in turn calling 
> {{readyPlayer(null)}}, causing a NullPointerException and crash at the line:
> {{if (this.audioFile.compareTo(file) == 0)}}
> There might be a root cause here that I am missing, but this displays the 
> symptom I am seeing. 



--
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-2673) add prompt dialog to Notification API

2016-11-16 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah resolved CB-2673.
--
Resolution: Fixed

all subtasks resolved.

> add prompt dialog to Notification API
> -
>
> Key: CB-2673
> URL: https://issues.apache.org/jira/browse/CB-2673
> Project: Apache Cordova
>  Issue Type: Improvement
>Reporter: James Jong
>Assignee: James Jong
> Fix For: Master
>
>
> A subtask will be created for each platform/component.



--
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-12144) App icon not displaying

2016-11-16 Thread sulthan allaudeen (JIRA)

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

sulthan allaudeen commented on CB-12144:



http://www.w3.org/ns/widgets"; 
xmlns:cdv="http://cordova.apache.org/ns/1.0";>
sa

Sulthan Allaudeen's Personal App

http://www.suthanallaudeen.com";>
Sulthan Allaudeen





http://*/*"; />
https://*/*"; />


mailto:*"; />



















Above is my config.xml file

I am using the latest version of cordova and android client version

> App icon not displaying
> ---
>
> Key: CB-12144
> URL: https://issues.apache.org/jira/browse/CB-12144
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Android
>Reporter: sulthan allaudeen
>
> Previously i have given the app icon inside www/img/logo.png
> It displayed the default app icon, 
> but now, i have updated the app icon res/mipmap-mdpi/icon.png. 
> Still it is displaying the default app icon only. How can i fix this ?



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

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



[jira] [Commented] (CB-10732) WKWebView incompatible with SQLite

2016-11-16 Thread Gary N Griswold (JIRA)

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

Gary N Griswold commented on CB-10732:
--

Just wanted to comment that I am using the sqlite plugin named 
cordova-sqlite-ext, and cordova-plugin-wkwebview-engine, and I have not 
experienced any problems.   wkwebview-engine is version 1.1.0 and sqlite-ext is 
version 0.10.2  These are both the current versions.

> WKWebView incompatible with SQLite
> --
>
> Key: CB-10732
> URL: https://issues.apache.org/jira/browse/CB-10732
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin WKWebViewEngine
> Environment: .iOS
>Reporter: Dean Le
>  Labels: triaged, wfc, wkwebview-1.0.2, wkwebview-known-issues
>
> UIWebView is working great, however, WKWebview couldn't open SQLite db



--
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-11505) Update CDVReachability from Apple's Reachability code

2016-11-16 Thread ASF subversion and git services (JIRA)

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

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

Commit c911ef883c4564b5f04eff04eb6a257eab8b4323 in 
cordova-plugin-network-information's branch refs/heads/master from [~Nikita 
Matrosov]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;h=c911ef8
 ]

CB-11230 CB-11505 iOS: Add compatibility with IPv6

Remove the logic associated with the local wi-fi because of the narrow use case 
for this API and the large potential for misuse

See also docs 
https://developer.apple.com/library/content/samplecode/Reachability/Listings/ReadMe_md.html#//apple_ref/doc/uid/DTS40007324-ReadMe_md-DontLinkElementID_11

 This closes #51


> Update CDVReachability from Apple's Reachability code
> -
>
> Key: CB-11505
> URL: https://issues.apache.org/jira/browse/CB-11505
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Network Information
>Reporter: Shazron Abdullah
>Priority: Critical
>
> See: 
> https://developer.apple.com/library/ios/samplecode/Reachability/History/History.html#//apple_ref/doc/uid/DTS40007324-RevisionHistory-DontLinkElementID_1
> The latest revision lists IPv6 compatibility, but the previous revision was 
> "minor bug fixes". Not sure if these include the IPv6 stuff, but Apple has 
> been rejecting apps if they are not IPv6 compatible, so this would be a risk.



--
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-11230) IPv4 dependency on iOS

2016-11-16 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11230:
-

Github user asfgit closed the pull request at:

https://github.com/apache/cordova-plugin-network-information/pull/51


> IPv4 dependency on iOS
> --
>
> Key: CB-11230
> URL: https://issues.apache.org/jira/browse/CB-11230
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Network Information
>Reporter: Christian Speckner
>  Labels: iOS, mustfix, triaged
>
> According to https://developer.apple.com/news/?id=05042016a , Apple will 
> reject Apps using IPv4 specific APIs after June 1st . A quick look at the 
> plugin shows that the iOS version uses  
> {{SCNetworkReachabilityCreateWithName}} and hence will be affected by this 
> restriction (according to 
> https://developer.apple.com/library/mac/documentation/NetworkingInternetWeb/Conceptual/NetworkingOverview/UnderstandingandPreparingfortheIPv6Transition/UnderstandingandPreparingfortheIPv6Transition.html).



--
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-11230) IPv4 dependency on iOS

2016-11-16 Thread ASF subversion and git services (JIRA)

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

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

Commit c911ef883c4564b5f04eff04eb6a257eab8b4323 in 
cordova-plugin-network-information's branch refs/heads/master from [~Nikita 
Matrosov]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-network-information.git;h=c911ef8
 ]

CB-11230 CB-11505 iOS: Add compatibility with IPv6

Remove the logic associated with the local wi-fi because of the narrow use case 
for this API and the large potential for misuse

See also docs 
https://developer.apple.com/library/content/samplecode/Reachability/Listings/ReadMe_md.html#//apple_ref/doc/uid/DTS40007324-ReadMe_md-DontLinkElementID_11

 This closes #51


> IPv4 dependency on iOS
> --
>
> Key: CB-11230
> URL: https://issues.apache.org/jira/browse/CB-11230
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Network Information
>Reporter: Christian Speckner
>  Labels: iOS, mustfix, triaged
>
> According to https://developer.apple.com/news/?id=05042016a , Apple will 
> reject Apps using IPv4 specific APIs after June 1st . A quick look at the 
> plugin shows that the iOS version uses  
> {{SCNetworkReachabilityCreateWithName}} and hence will be affected by this 
> restriction (according to 
> https://developer.apple.com/library/mac/documentation/NetworkingInternetWeb/Conceptual/NetworkingOverview/UnderstandingandPreparingfortheIPv6Transition/UnderstandingandPreparingfortheIPv6Transition.html).



--
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-11230) IPv4 dependency on iOS

2016-11-16 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-11230:
-

Github user vladimir-kotikov commented on the issue:

https://github.com/apache/cordova-plugin-network-information/pull/51
  
Merging, thanks!


> IPv4 dependency on iOS
> --
>
> Key: CB-11230
> URL: https://issues.apache.org/jira/browse/CB-11230
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin Network Information
>Reporter: Christian Speckner
>  Labels: iOS, mustfix, triaged
>
> According to https://developer.apple.com/news/?id=05042016a , Apple will 
> reject Apps using IPv4 specific APIs after June 1st . A quick look at the 
> plugin shows that the iOS version uses  
> {{SCNetworkReachabilityCreateWithName}} and hence will be affected by this 
> restriction (according to 
> https://developer.apple.com/library/mac/documentation/NetworkingInternetWeb/Conceptual/NetworkingOverview/UnderstandingandPreparingfortheIPv6Transition/UnderstandingandPreparingfortheIPv6Transition.html).



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