[jira] [Commented] (CB-12886) white area where status bar is in iOS 11

2017-09-19 Thread Max Lynch (JIRA)

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

Max Lynch commented on CB-12886:


The Ionic forked wkwebview plugin has been updated to fix the statusbar/footer 
padding issue: https://github.com/ionic-team/cordova-plugin-wkwebview-engine

> white area where status bar is in iOS 11
> 
>
> Key: CB-12886
> URL: https://issues.apache.org/jira/browse/CB-12886
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
> Environment: iOS 11 beta 1
>Reporter: Shazron Abdullah
>  Labels: backlog, ios11
> Fix For: cordova-ios@5.0.0
>
> Attachments: ios11.png, screenshot-1.png, screenshot-2.png
>
>
> See attached screenshot. Using WKWebView plugin, new app.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-12886) white area where status bar is in iOS 11

2017-09-19 Thread Max Lynch (JIRA)

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

Max Lynch commented on CB-12886:


Also Mike on the Ionic team submitted a PR to adjust the statusbar on iOS 11, 
curious if this helps anyone else: 
https://github.com/apache/cordova-plugin-statusbar/pull/85

> white area where status bar is in iOS 11
> 
>
> Key: CB-12886
> URL: https://issues.apache.org/jira/browse/CB-12886
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
> Environment: iOS 11 beta 1
>Reporter: Shazron Abdullah
>  Labels: backlog, ios11
> Fix For: cordova-ios@5.0.0
>
> Attachments: ios11.png, screenshot-1.png, screenshot-2.png
>
>
> See attached screenshot. Using WKWebView plugin, new app.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-12886) white area where status bar is in iOS 11

2017-09-19 Thread Max Lynch (JIRA)

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

Max Lynch commented on CB-12886:


We're tracking this on the Ionic side and looking into it for anything that 
might be at fault on our end. The WKWebView plugin is getting a number of 
tweaks in preparation for the iPhone X but we're not ready yet. More info 
tomorrow...

> white area where status bar is in iOS 11
> 
>
> Key: CB-12886
> URL: https://issues.apache.org/jira/browse/CB-12886
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
> Environment: iOS 11 beta 1
>Reporter: Shazron Abdullah
>  Labels: backlog, ios11
> Fix For: cordova-ios@5.0.0
>
> Attachments: ios11.png, screenshot-1.png, screenshot-2.png
>
>
> See attached screenshot. Using WKWebView plugin, new app.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Resolved] (CB-12895) Replace jshint with eslint in our tools + platforms

2017-09-19 Thread Audrey So (JIRA)

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

Audrey So resolved CB-12895.

Resolution: Fixed

> Replace jshint with eslint in our tools + platforms
> ---
>
> Key: CB-12895
> URL: https://issues.apache.org/jira/browse/CB-12895
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: AllComponents
>Reporter: Steve Gill
>Assignee: Audrey So
>Priority: Minor
>  Labels: cordova-next
>
> Based on this proposal
> https://github.com/cordova/cordova-discuss/pull/70#issuecomment-306649308
> JSHint does minimal checks and JSCS has been deprecated in favor of ESLint.
>  +
>  +I suggest to replace the current style checkers with ESLint. This allows to 
> set much more strict styling rules than at at this moment.
>  +
>  +I recommend using a popular preset, such as 
> [airbnb-base](https://www.npmjs.com/package/eslint-config-airbnb-base). 
> Example configuration:
>  +
>  +```yaml
>  +root: true
>  +
>  +extends: airbnb-base
>  +```
>  +
>  +Many styling issues could be fixed by simply running:
>  +
>  +```
>  +./node_modules/.bin/eslint --fix .
>  +```
>  +
>  +
>  +
>  +Optionally the indent could be set to 4 instead of 2, because that's used 
> in the current code base.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Created] (CB-13303) cordova fetch should use --production flag by default

2017-09-19 Thread Steve Gill (JIRA)
Steve Gill created CB-13303:
---

 Summary: cordova fetch should use --production flag by default 
 Key: CB-13303
 URL: https://issues.apache.org/jira/browse/CB-13303
 Project: Apache Cordova
  Issue Type: Task
  Components: cordova-fetch
Reporter: Steve Gill


This should speed up cordova-fetch. When installing platforms and plugins, run 
npm install --production under the hood so we don't fetch dev dependencies. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Created] (CB-13302) review existing fetch logic

2017-09-19 Thread Steve Gill (JIRA)
Steve Gill created CB-13302:
---

 Summary: review existing fetch logic
 Key: CB-13302
 URL: https://issues.apache.org/jira/browse/CB-13302
 Project: Apache Cordova
  Issue Type: Task
  Components: cordova-lib
Reporter: Steve Gill


Going to review the existing fetch logic and package.json/config.xml writes and 
try to optimize. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-12895) Replace jshint with eslint in our tools + platforms

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit 06441bb531e6bddd2f8f2517fb21de2e0ea4c9b3 in cordova-fetch's branch 
refs/heads/master from [~auso]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-fetch.git;h=06441bb ]

CB-12895 : setting up eslint and removing jshint

 This closes #2


> Replace jshint with eslint in our tools + platforms
> ---
>
> Key: CB-12895
> URL: https://issues.apache.org/jira/browse/CB-12895
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: AllComponents
>Reporter: Steve Gill
>Assignee: Audrey So
>Priority: Minor
>  Labels: cordova-next
>
> Based on this proposal
> https://github.com/cordova/cordova-discuss/pull/70#issuecomment-306649308
> JSHint does minimal checks and JSCS has been deprecated in favor of ESLint.
>  +
>  +I suggest to replace the current style checkers with ESLint. This allows to 
> set much more strict styling rules than at at this moment.
>  +
>  +I recommend using a popular preset, such as 
> [airbnb-base](https://www.npmjs.com/package/eslint-config-airbnb-base). 
> Example configuration:
>  +
>  +```yaml
>  +root: true
>  +
>  +extends: airbnb-base
>  +```
>  +
>  +Many styling issues could be fixed by simply running:
>  +
>  +```
>  +./node_modules/.bin/eslint --fix .
>  +```
>  +
>  +
>  +
>  +Optionally the indent could be set to 4 instead of 2, because that's used 
> in the current code base.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Resolved] (CB-13206) local plugin fails to fetch/install during restore

2017-09-19 Thread Steve Gill (JIRA)

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

Steve Gill resolved CB-13206.
-
Resolution: Fixed

> local plugin fails to fetch/install during restore 
> ---
>
> Key: CB-13206
> URL: https://issues.apache.org/jira/browse/CB-13206
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-lib
>Affects Versions: cordova@7.0.1
>Reporter: Steve Gill
>Assignee: Steve Gill
>  Labels: backlog, tools-next
> Fix For: cordova@7.1.0
>
>
> Looks like the logic in determinePluginTarget function in 
> src/cordova/plugin/add.js is a little messed up. Line 231 seems to be the 
> culprit. 
> {code}
> cordova prepare
> Warning: using prerelease version 7.0.2-dev (cordova-lib@7.0.2-dev)
> Discovered plugin "phonegap-plugin-push" in config.xml. Adding it to the 
> project
> Failed to restore plugin "phonegap-plugin-push" from config.xml. You might 
> need to try adding it again. Error: Failed to fetch plugin 
> phonegap-plugin-push@../../../phonegap/phonegap-plugin-push via registry.
> Probably this is either a connection problem, or plugin spec is incorrect.
> Check your connection and plugin name/version/URL.
> Error: npm: Command failed with exit code 254 Error output:
> npm ERR! addLocal Could not install 
> /Users/steveng/repo/cordova/phonegap/phonegap-plugin-push
> npm ERR! path /Users/steveng/repo/cordova/phonegap/phonegap-plugin-push
> npm ERR! code ENOENT
> npm ERR! errno -2
> npm ERR! syscall open
> npm ERR! enoent ENOENT: no such file or directory, open 
> '/Users/steveng/repo/cordova/phonegap/phonegap-plugin-push'
> npm ERR! enoent This is most likely not a problem with npm itself
> npm ERR! enoent and is related to npm not being able to find a file.
> npm ERR! enoent
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Closed] (CB-13270) CLONE - correct syntax of function in documentation : "inappbrowser"

2017-09-19 Thread Joe Bowser (JIRA)

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

Joe Bowser closed CB-13270.
---
Resolution: Duplicate

> CLONE - correct  syntax of  function in documentation : "inappbrowser"
> --
>
> Key: CB-13270
> URL: https://issues.apache.org/jira/browse/CB-13270
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Gannouni Mohammed
>
> correct the syntax of  function changeBackgroundColor() and  
> replaceHeaderImage()  in the documentation inappbrowser



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Resolved] (CB-13282) intent:// links not working

2017-09-19 Thread Joe Bowser (JIRA)

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

Joe Bowser resolved CB-13282.
-
Resolution: Not A Problem

We intentionally force users to whitelist intent links so that applications 
can't just open other applications on the device.  You can find more 
information in the whitelist documentation.

https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-whitelist/

> intent:// links not working
> ---
>
> Key: CB-13282
> URL: https://issues.apache.org/jira/browse/CB-13282
> Project: Apache Cordova
>  Issue Type: Bug
>Reporter: Bernhard Eckl
>
> intent:// links only work on the android / chrome browser, but not in a 
> Cordova App. But there is no other way to deep link to an app with a fallback 
> if it is not installed.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Resolved] (CB-13286) plugin-geolocation fails , after 2 min, in Huawei P9/10

2017-09-19 Thread Joe Bowser (JIRA)

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

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

The browser handles all Geolocation functionality, which means that this is a 
bug we can literally do nothing about, since we just handle permission handling 
on Android 5.x and higher.  You could see if using a Third Party WebView is an 
option for Huawei devices, however there's none that I would currently 
recommend.



> plugin-geolocation fails , after 2 min, in Huawei P9/10
> ---
>
> Key: CB-13286
> URL: https://issues.apache.org/jira/browse/CB-13286
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-geolocation
>Affects Versions: cordova@7.0.0
> Environment: cordova -v  7.0.1
> Installed platforms:
>   android 6.1.0
> com.phonegap.plugins.nativesettingsopener 1.2 "Native settings"
> cordova-plugin-background-mode 0.6.6-dev "BackgroundMode"
> cordova-plugin-bluetooth-serial 0.4.6 "Bluetooth Serial"
> cordova-plugin-compat 1.1.0 "Compat"
> cordova-plugin-console 1.0.5 "Console"
> cordova-plugin-datepicker 0.9.3 "DatePicker"
> cordova-plugin-device 1.1.4 "Device"
> cordova-plugin-dialogs 1.3.0 "Notification"
> cordova-plugin-file 4.3.1 "File"
> cordova-plugin-geolocation 2.4.1 "Geolocation"
> cordova-plugin-googlemaps 1.4.0 "phonegap-googlemaps-plugin"
> cordova-plugin-mauron85-background-geolocation 2.2.4 
> "CDVBackgroundGeolocation"
> cordova-plugin-media 2.4.1 "Media"
> cordova-plugin-network-information 1.3.0 "Network Information"
> cordova-plugin-splashscreen 4.0.1 "Splashscreen"
> cordova-plugin-vibration 2.1.2 "Vibration"
> cordova-plugin-whitelist 1.3.0 "Whitelist"
> cordova-plugin-x-toast 2.5.2 "Toast"
> cordova.plugins.diagnostic 3.2.1 "Diagnostic"
> de.appplant.cordova.plugin.local-notification 0.8.2dev "LocalNotification"
> phonegap-plugin-push 1.10.5 "PushPlugin"
>Reporter: Ivan Penchev
>
> Logic of the program:
>  if CurrentLocation is close to POI 
> Important to notice is this bug happens on only Some phones (Mostly  Huawei 
> P9/10), as same code runs perfectly on my S6.
> Logic implemntation:
> {code:JavaScript}
> function onAppReady()
> {
> build_dom();
> gps_watch();
> if IOS .
> If Android 
> }
> function gps_watch()
> {
>   var options = {
>   enableHighAccuracy: true,
>   timeout: 3
>   }
> gps_watch_handle = navigator.geolocation.watchPosition(
>   location_received,
>   function(obj)
>   {
>some code here... basically it says  to restart the 
> gps_watch()
> },
> ,
>   options
>   );
> }
> function location_received(position)
> {
> if IOS  do this
> If Android do this...
> basic logic is we create an data source with which we can compare.
>   pos = new Array(position.coords.latitude, position.coords.longitude, 
> position.coords.accuracy, position.coords.speed, position.coords.heading);
> }
> {code}
> So far  I tried to debug something in the console: 
> this is what I have:
> within gps_watch method
> within location_received method
>  >>> Latitude: 57.023577388
> within location_received method
>  >>> Latitude: 57.023596579
> this above repeate for about 2 minutes (which is how it should behave).
> Then it stops:
> within location_received method
>  >>> Latitude: 57.023733988
> within location_received method
> No errors no nothing. I tried manually to start the gps_watch method (just 
> added a button with that method attached as onClick) this happens:
> within gps_watch method
> within error function in gps_watch method
> within gps_watch method
> within error function in gps_watch method
> and this repeate.
> EDIT: in the error function object, which I receive after I manually click on 
> the gps_watch method with the button I greated lies this:
> body:::gps error: Timeout expired
> code:::gps errorcode: 3
> As you can see I am a novice developer, I would appreciate any guides into 
> how to solve/further debug this issue.
> Thank you,
> Ivan



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CB-13292) Cordova not building and returns this error- Could not resolve net.sf.kxml:kxml2:2.3.0

2017-09-19 Thread Joe Bowser (JIRA)

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

Joe Bowser edited comment on CB-13292 at 9/19/17 9:40 PM:
--

What plugins are you currently using? Have you updated your SDK?  This looks 
like an issue with your system's setup.


was (Author: bowserj):
What plugins are you currently using? This looks like it's related to a 
third-party plugin that is using Google's Compatibility Library.

> Cordova not building and returns this error- Could not resolve 
> net.sf.kxml:kxml2:2.3.0
> --
>
> Key: CB-13292
> URL: https://issues.apache.org/jira/browse/CB-13292
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-android, cordova-ubuntu
>Affects Versions: cordova@7.0.0
> Environment: Linux mint-18.2 64bit system
>Reporter: Ashok S
>Assignee: Joe Bowser
>  Labels: build, newbie
> Fix For: cordova@7, 6.2.2, cordova@7.0.0
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> I have used quasar framework for my app and I have wrapped it with cordova. I 
> have added the platform to android, and I get error when I build with cordova 
> build android.
> My build gives error as below,Error: 
> /home/user/Projects/cordova/platforms/android/gradlew: Command failed with 
> exit code 1 Error output:
> FAILURE: Build failed with an exception.
> * What went wrong:
> A problem occurred configuring root project 'android'.
> > Could not resolve all dependencies for configuration ':classpath'.
>> Could not resolve net.sf.kxml:kxml2:2.3.0.
>  Required by:
>  project : > com.android.tools.build:gradle:2.2.3 > 
> com.android.tools.build:gradle-core:2.2.3 > 
> com.android.tools.build:builder:2.2.3 > 
> com.android.tools.build:manifest-merger:25.2.3
>  project : > com.android.tools.build:gradle:2.2.3 > 
> com.android.tools.build:gradle-core:2.2.3 > 
> com.android.tools.build:builder:2.2.3 > com.android.tools.ddms:ddmlib:25.2.3
>  project : > com.android.tools.build:gradle:2.2.3 > 
> com.android.tools.build:gradle-core:2.2.3 > 
> com.android.tools.build:builder:2.2.3 > com.android.tools:sdklib:25.2.3 > 
> com.android.tools.layoutlib:layoutlib-api:25.2.3
>   > Could not resolve net.sf.kxml:kxml2:2.3.0.
>  > Could not get resource 
> 'https://repo1.maven.org/maven2/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom'.
> > Could not HEAD 
> 'https://repo1.maven.org/maven2/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom'.
>> repo1.maven.org: Temporary failure in name resolution
>   > Could not resolve net.sf.kxml:kxml2:2.3.0.
>  > Could not get resource 
> 'https://jcenter.bintray.com/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom'.
> > Could not HEAD 
> 'https://jcenter.bintray.com/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom'.
>> jcenter.bintray.com: Temporary failure in name resolution
> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or 
> --debug option to get more log output.
> How to resolve this?



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13292) Cordova not building and returns this error- Could not resolve net.sf.kxml:kxml2:2.3.0

2017-09-19 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-13292:
-

What plugins are you currently using? This looks like it's related to a 
third-party plugin that is using Google's Compatibility Library.

> Cordova not building and returns this error- Could not resolve 
> net.sf.kxml:kxml2:2.3.0
> --
>
> Key: CB-13292
> URL: https://issues.apache.org/jira/browse/CB-13292
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-android, cordova-ubuntu
>Affects Versions: cordova@7.0.0
> Environment: Linux mint-18.2 64bit system
>Reporter: Ashok S
>Assignee: Joe Bowser
>  Labels: build, newbie
> Fix For: cordova@7, 6.2.2, cordova@7.0.0
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> I have used quasar framework for my app and I have wrapped it with cordova. I 
> have added the platform to android, and I get error when I build with cordova 
> build android.
> My build gives error as below,Error: 
> /home/user/Projects/cordova/platforms/android/gradlew: Command failed with 
> exit code 1 Error output:
> FAILURE: Build failed with an exception.
> * What went wrong:
> A problem occurred configuring root project 'android'.
> > Could not resolve all dependencies for configuration ':classpath'.
>> Could not resolve net.sf.kxml:kxml2:2.3.0.
>  Required by:
>  project : > com.android.tools.build:gradle:2.2.3 > 
> com.android.tools.build:gradle-core:2.2.3 > 
> com.android.tools.build:builder:2.2.3 > 
> com.android.tools.build:manifest-merger:25.2.3
>  project : > com.android.tools.build:gradle:2.2.3 > 
> com.android.tools.build:gradle-core:2.2.3 > 
> com.android.tools.build:builder:2.2.3 > com.android.tools.ddms:ddmlib:25.2.3
>  project : > com.android.tools.build:gradle:2.2.3 > 
> com.android.tools.build:gradle-core:2.2.3 > 
> com.android.tools.build:builder:2.2.3 > com.android.tools:sdklib:25.2.3 > 
> com.android.tools.layoutlib:layoutlib-api:25.2.3
>   > Could not resolve net.sf.kxml:kxml2:2.3.0.
>  > Could not get resource 
> 'https://repo1.maven.org/maven2/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom'.
> > Could not HEAD 
> 'https://repo1.maven.org/maven2/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom'.
>> repo1.maven.org: Temporary failure in name resolution
>   > Could not resolve net.sf.kxml:kxml2:2.3.0.
>  > Could not get resource 
> 'https://jcenter.bintray.com/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom'.
> > Could not HEAD 
> 'https://jcenter.bintray.com/net/sf/kxml/kxml2/2.3.0/kxml2-2.3.0.pom'.
>> jcenter.bintray.com: Temporary failure in name resolution
> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or 
> --debug option to get more log output.
> How to resolve this?



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13255) Android Camera photo Crop bug

2017-09-19 Thread Joe Bowser (JIRA)

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

Joe Bowser commented on CB-13255:
-

[~kovacs.tamas] Can you provide some more information? Which device are you 
finding this behaviour, and what version of Android are you currently running?

> Android Camera photo  Crop bug
> --
>
> Key: CB-13255
> URL: https://issues.apache.org/jira/browse/CB-13255
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-camera
>Reporter: Yash Rad
> Attachments: Screen Shot 2017-09-08 at 15.34.18.png
>
>
> I'm experiencing this on Android devices after taking a photo:
> Preview of the photo is shown correctly,[^attachment-name.zip]
> When you are asked to pick a program for cropping "only once", the image is 
> lost.
> Only after choosing "always" for the default cropping app , from the next 
> time you take the photos it works.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CB-13255) Android Camera photo Crop bug

2017-09-19 Thread Joe Bowser (JIRA)

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

Joe Bowser updated CB-13255:

   Priority: Major  (was: Blocker)
Component/s: cordova-plugin-camera

> Android Camera photo  Crop bug
> --
>
> Key: CB-13255
> URL: https://issues.apache.org/jira/browse/CB-13255
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-camera
>Reporter: Yash Rad
> Attachments: Screen Shot 2017-09-08 at 15.34.18.png
>
>
> I'm experiencing this on Android devices after taking a photo:
> Preview of the photo is shown correctly,[^attachment-name.zip]
> When you are asked to pick a program for cropping "only once", the image is 
> lost.
> Only after choosing "always" for the default cropping app , from the next 
> time you take the photos it works.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-9852) cordova-plugin-camera file picker does not appear in browser

2017-09-19 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-9852:


Github user Lianite commented on the issue:

https://github.com/apache/cordova-plugin-camera/pull/200
  
Is there an ETA for this getting merged in?

This still appears to be a problem as of v.2.4.1.


> cordova-plugin-camera file picker does not appear in browser
> 
>
> Key: CB-9852
> URL: https://issues.apache.org/jira/browse/CB-9852
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-camera
>Affects Versions: 1.2.0
> Environment: Windows, Chrome/Firefox
>Reporter: Rob Caldecott
>  Labels: browser, reproduced, triaged
>
> Using latest (5.3.3) Cordova and cordova-plugin-camera 1.2.0, browser support 
> to select an image is not working. Each time you call 
> navigator.camera.getPicture with sourceType = 
> Camera.PictureSourceType.PHOTOLIBRARY a new file input is appended to the 
> document, but nothing actually happens.
> Tested on Chrome 46 and Firefox 40.
> To reproduce, create a basic Cordova project. Add browser as a platform then 
> add the cordova-plugin-camera plugin. Then add a button to your document 
> which when clicked executes the following:
> navigator.camera.getPicture(success, error, {
> sourceType: Camera.PictureSourceType.PHOTOLIBRARY
> });
> (include a suitable success/error handler).
> Run with cordova emulate browser. When the above is executed, the following 
> is inserted into your document:
> 
> Successive calls will add more of these. If you actually click on one then 
> the file picker will appear. But it seems that whatever simulates this click 
> is not working.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Darryl Pogue (JIRA)

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

Darryl Pogue edited comment on CB-13273 at 9/19/17 4:42 PM:


I can reproduce this with a plain UIWebView loading the test page. Sounds like 
we need to file bug reports with Apple.
My Radar report: http://www.openradar.me/radar?id=5035192880201728

It does work in WKWebView, and it looks like the fix might have been 
https://github.com/WebKit/webkit/commit/4ab234a9e72f1dadc3540a82507065af9e91addb


was (Author: dpogue):
I can reproduce this with a plain UIWebView loading the test page. Sounds like 
we need to file bug reports with Apple.

It does work in WKWebView, and it looks like the fix might have been 
https://github.com/WebKit/webkit/commit/4ab234a9e72f1dadc3540a82507065af9e91addb

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png, 
> webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Darryl Pogue (JIRA)

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

Darryl Pogue commented on CB-13273:
---

I can reproduce this with a plain UIWebView loading the test page. Sounds like 
we need to file bug reports with Apple.

It does work in WKWebView, and it looks like the fix might have been 
https://github.com/WebKit/webkit/commit/4ab234a9e72f1dadc3540a82507065af9e91addb

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png, 
> webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-12361) Speed up cordova-lib tests

2017-09-19 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on CB-12361:
-

GitHub user audreyso opened a pull request:

https://github.com/apache/cordova-lib/pull/595

CB-12361 : updated and added unit tests for add.spec.js



### Platforms affected


### What does this PR do?

Updated and added "to-do" unit tests for add.spec.js

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


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


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

$ git pull https://github.com/audreyso/cordova-lib CB-12361-plugin_fetch

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

https://github.com/apache/cordova-lib/pull/595.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 #595


commit ec07983d1ed587358a30fc003e9f86edd47e9bce
Author: Audrey So 
Date:   2017-09-18T20:37:45Z

CB-12361 : updated and added unit tests for add.spec.js




> Speed up cordova-lib tests
> --
>
> Key: CB-12361
> URL: https://issues.apache.org/jira/browse/CB-12361
> Project: Apache Cordova
>  Issue Type: Improvement
>  Components: cordova-lib
>Reporter: Steve Gill
>Assignee: Steve Gill
>  Labels: cordova-next
>
> * Split out e2e tests into own folder
> * stub i/o and network requests
> * use local fixtures when possible & makes sense



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-13191:
--
Labels: backlog ios-next  (was: )

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
>  Labels: backlog, ios-next
> Fix For: cordova-ios@4.5.1
>
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Assigned] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah reassigned CB-13191:
-

Assignee: Suraj Pindoria

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
>Assignee: Suraj Pindoria
>  Labels: backlog, ios-next
> Fix For: cordova-ios@4.5.1
>
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Shazron Abdullah (JIRA)

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

Shazron Abdullah updated CB-13191:
--
Fix Version/s: cordova-ios@4.5.1

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
>  Labels: backlog, ios-next
> Fix For: cordova-ios@4.5.1
>
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Dave Alden (JIRA)

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

Dave Alden commented on CB-13273:
-

Yes Mike, the rotation issue has nothing to do with cordova-plugin-statusbar: 
this is occurring in the attached test project which doesn't include that 
plugin. As noted, it only happens when using UIWebView. With WKWebView (via 
cordova-plugin-wkwebview-engine), the issue does not manifest itself.

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png, 
> webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Mike Hartington (JIRA)

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

Mike Hartington edited comment on CB-13273 at 9/19/17 3:46 PM:
---

I dont think this is anything to do with the PR. From what I'm seeing, css calc 
is causing issues. In my tests without the statusbar plugin, screen rotation is 
causing 

{code}
.header {
  min-height: calc(constant(safe-area-inset-bottom) + 44px);
}
{code}

To get thrown off 


!Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png|width=300!


was (Author: mhartington):
I dont think this is anything to do with the PR. From what I'm seeing, css calc 
is causing issues. In my tests without the statusbar plugin, screen rotation is 
causing 

{code}
.header {
  min-height: calc(constant(safe-area-inset-bottom) + 44px);
}
{code}

To get thrown off 


!Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png|thumbnail!

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png, 
> webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Mike Hartington (JIRA)

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

Mike Hartington commented on CB-13273:
--

I dont think this is anything to do with the PR. From what I'm seeing, css calc 
is causing issues. In my tests without the statusbar plugin, screen rotation is 
causing 

{code}
.header {
  min-height: calc(constant(safe-area-inset-bottom) + 44px);
}
{code}

To get thrown off 


!Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png|thumbnail!

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png, 
> webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Mike Hartington (JIRA)

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

Mike Hartington updated CB-13273:
-
Attachment: Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, Simulator Screen Shot - iPhone X - 2017-09-19 at 11.29.00.png, 
> webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

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

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit ef5fb5b9e6b3d36950febbbdf85abf78f2aba7d8 in cordova-plugin-statusbar's 
branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-statusbar.git;h=ef5fb5b
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

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

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit 63955da87b75d39644a49716ad6028ad74399dba in 
cordova-plugin-screen-orientation's branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-screen-orientation.git;h=63955da
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

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

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit 405bfcd0d4dcc3558531a3806f08c55b276a008c in 
cordova-plugin-media-capture's branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media-capture.git;h=405bfcd
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit cf49d7ef02a399dddc5811b9799c1481de62b2b9 in cordova-plugin-media's 
branch refs/heads/master from [~alsorokin]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-media.git;h=cf49d7e ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit bfe87639180c4be0dd28e19f581f08ff2bfbe2a7 in 
cordova-plugin-inappbrowser's branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-inappbrowser.git;h=bfe8763
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit 0a2d22b009d7e5019b91f01751a0cf8c97d78884 in 
cordova-plugin-globalization's branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-globalization.git;h=0a2d22b
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit 5e472fd54dd1467f1ebb7f2c5a215adebd98927c in cordova-plugin-geolocation's 
branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-geolocation.git;h=5e472fd
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit dc9639e8c8e2c9ca77752f47c374c60b0c28a50f in cordova-plugin-file's branch 
refs/heads/master from [~alsorokin]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file.git;h=dc9639e ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit 706b1aa53978da301b5623ee93e1dfc855426919 in 
cordova-plugin-file-transfer's branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-file-transfer.git;h=706b1aa
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit 8de6d3a90a5f5bd7ff5c6b1002a82c3ea67d18eb in cordova-plugin-dialogs's 
branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-dialogs.git;h=8de6d3a ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Created] (CB-13301) Add config.xml option to allow moving app to SD Card

2017-09-19 Thread Andres Zsogon (JIRA)
Andres Zsogon created CB-13301:
--

 Summary: Add config.xml option to allow moving app to SD Card
 Key: CB-13301
 URL: https://issues.apache.org/jira/browse/CB-13301
 Project: Apache Cordova
  Issue Type: Wish
  Components: cordova-android
Affects Versions: Master
 Environment: Visual Studio 201x
Reporter: Andres Zsogon
Assignee: Joe Bowser
Priority: Minor


Currently, the Move to SD card option in Android is disabled by default. We 
have to create this hook to edit the manifest and allow moving it to SD card:

{{#!/usr/bin/env node
// Adds lines to the Android Manifest if they are not already there
const LINES_TO_ADD = [
{
text: ' android:installLocation="auto"', /* allow moving app to SD card 
*/
after: '

[jira] [Comment Edited] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Dave Alden (JIRA)

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

Dave Alden edited comment on CB-13273 at 9/19/17 12:31 PM:
---

When using UIWebView, rotating the iPhone X Simulator from portrait > landscape 
> portrait causes the safe-area-inset not to be re-applied, causing the content 
to be obscured by the notch again. This doesn't happen when using WKWebView via 
cordova-plugin-wkwebview-engine.


was (Author: dpa99c):
When using UIWebView, rotating the iPhone X Simulator from portrait > landscape 
> portrait causes the safe-area-inset not to be re-applied, causing the content 
to be obscured by the notch again. This doesn't happen when using WKWebView via 
`cordova-plugin-wkwebview-engine'.

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Dave Alden (JIRA)

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

Dave Alden edited comment on CB-13273 at 9/19/17 12:30 PM:
---

When using UIWebView, rotating the iPhone X Simulator from portrait > landscape 
> portrait causes the safe-area-inset not to be re-applied, causing the content 
to be obscured by the notch again. This doesn't happen when using WKWebView via 
`cordova-plugin-wkwebview-engine'.


was (Author: dpa99c):
Rotating the iPhone X Simulator from portrait > landscape > portrait causes the 
safe-area-inset not to be re-applied, causing the content to be obscured by the 
notch again

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Christian Speckner (JIRA)

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

Christian Speckner commented on CB-13191:
-

There you go: https://github.com/apache/cordova-ios/pull/337 :)

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13273) Webview is sized incorrectly on iPhone X (Simulator)

2017-09-19 Thread Dave Alden (JIRA)

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

Dave Alden commented on CB-13273:
-

Rotating the iPhone X Simulator from portrait > landscape > portrait causes the 
safe-area-inset not to be re-applied, causing the content to be obscured by the 
notch again

> Webview is sized incorrectly on iPhone X (Simulator)
> 
>
> Key: CB-13273
> URL: https://issues.apache.org/jira/browse/CB-13273
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Affects Versions: cordova-ios 4.5.0
> Environment: Xcode 9.0 (9A235)
> Simulator 10.0 (SimulatorApp-829.6) - iPhone X
>Reporter: Dave Alden
>Assignee: Shazron Abdullah
>  Labels: iPhoneX, ios11
> Attachments: fig1.png, fig2.png, Simulator Screen Shot - iPhone X - 
> 2017-09-14 at 15.52.54.png, Simulator Screen Shot - iPhone X - 2017-09-15 at 
> 09.20.48.png, webview-test.zip
>
>
> New app with cordova-ios@4.5.0 (using default UIWebView) running on iPhone X 
> Simulator does not size correctly, leaving black areas above and below the 
> app content and white bars between the black areas and app content.
> Adding cordova-plugin-wkwebview-engine so Cordova uses WKWebView, white bars 
> go away, but the black areas remain:
> !https://cdn.pbrd.co/images/GKeaEPg.png|height=640! 
> !https://cdn.pbrd.co/images/GKeaWwK.png|height=640!
> Setting 
> {code:html}viewport-fit=cover{code}
> fixes the white bar issue with UIWebView, as outlined here 
> [http://stephenradford.me/removing-the-white-bars-in-safari-on-iphone-x/], 
> but the black areas remain:
> [^Simulator Screen Shot - iPhone X - 2017-09-14 at 15.52.54.png]
> Attached Cordova project illustrates the issue.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Jan Piotrowski (Sujan) (JIRA)

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

Jan Piotrowski (Sujan) commented on CB-13191:
-

Awesome 

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Updated] (CB-13300) cordova-plugin-statusbar Softkeyboard overlapping Input

2017-09-19 Thread Ozgun Unlu (JIRA)

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

Ozgun Unlu updated CB-13300:

Description: 
Android version 6.0.0.

I added StatusBar.hide(); in deviceReady event. It works well, but when i focus 
the input, softkeyboard overlapping on input. 

If i delete StatusBar.hide();, softkeyboard does not overlap on input.

Also;
I tried to change fullscreen preference to false in config.xml
I tried to change android:windowSoftInputMode="adjustResize" to 
android:windowSoftInputMode="adjustPan" in AndroidManifest.xml.


I dont try on IOS.

  was:
Android version 6.0.0.

I added StatusBar.hide(); in deviceReady event. It works well, but when i focus 
the input, softkeyboard overlapping on input. 

If i delete StatusBar.hide();, softkeyboard does not overlap on input.


> cordova-plugin-statusbar Softkeyboard overlapping Input
> ---
>
> Key: CB-13300
> URL: https://issues.apache.org/jira/browse/CB-13300
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-statusbar
>Reporter: Ozgun Unlu
>Priority: Critical
>
> Android version 6.0.0.
> I added StatusBar.hide(); in deviceReady event. It works well, but when i 
> focus the input, softkeyboard overlapping on input. 
> If i delete StatusBar.hide();, softkeyboard does not overlap on input.
> Also;
> I tried to change fullscreen preference to false in config.xml
> I tried to change android:windowSoftInputMode="adjustResize" to 
> android:windowSoftInputMode="adjustPan" in AndroidManifest.xml.
> I dont try on IOS.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Created] (CB-13300) cordova-plugin-statusbar Softkeyboard overlapping Input

2017-09-19 Thread Ozgun Unlu (JIRA)
Ozgun Unlu created CB-13300:
---

 Summary: cordova-plugin-statusbar Softkeyboard overlapping Input
 Key: CB-13300
 URL: https://issues.apache.org/jira/browse/CB-13300
 Project: Apache Cordova
  Issue Type: Bug
  Components: cordova-plugin-statusbar
Reporter: Ozgun Unlu
Priority: Critical


Android version 6.0.0.

I added StatusBar.hide(); in deviceReady event. It works well, but when i focus 
the input, softkeyboard overlapping on input. 

If i delete StatusBar.hide();, softkeyboard does not overlap on input.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Tim Brust (JIRA)

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

Tim Brust commented on CB-13191:


[~Sujan12] Will try GM later today and report back, but I assume it's still the 
case.

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Christian Speckner (JIRA)

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

Christian Speckner commented on CB-13191:
-

[~Sujan12] It can be added manually, but this disrupts any automated build 
workflow ;) As for the PR, that is precisely what I am currently working on.

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Comment Edited] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Jan Piotrowski (Sujan) (JIRA)

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

Jan Piotrowski (Sujan) edited comment on CB-13191 at 9/19/17 9:24 AM:
--

[~cnspeckn], can't this just be added manually using Xcode until the Cordova 
tooling is updated?

There is no Pull Request for this issue yet, so nothing to be merged or to be 
released. Cordova is open source, and stuff like this requires the help of the 
community to be taken care of. Can you maybe create this PR and submit it for 
Cordova to have a look at?

[~timbru31] Did you try with Xcode 9 GM and can confirm the situation is still 
as you described? 

(I personally can't confirm this as I am missing a Mac that can run Xcode 9...)


was (Author: sujan12):
[~cnspeckn], can't this just be added manually using Xcode until the Cordova 
tooling is updated?

There is no Pull Request for this issue yet, so nothing to be merged or to be 
released. Cordova is open source, and stuff like this requires the help of the 
community to be taken care of. Can you maybe create this PR and submit it for 
Cordova to have a look at?

[~timbru31] Did you try with Xcode 9 GM and can confirm the situation is still 
as you described? (I personally can't confirm this as I am missing a Mac that 
can run Xcode 9...)

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Jan Piotrowski (Sujan) (JIRA)

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

Jan Piotrowski (Sujan) commented on CB-13191:
-

[~cnspeckn], can't this just be added manually using Xcode until the Cordova 
tooling is updated?

There is no Pull Request for this issue yet, so nothing to be merged or to be 
released. Cordova is open source, and stuff like this requires the help of the 
community to be taken care of. Can you maybe create this PR and submit it for 
Cordova to have a look at?

[~timbru31] Did you try with Xcode 9 GM and can confirm the situation is still 
as you described? (I personally can't confirm this as I am missing a Mac that 
can run Xcode 9...)

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13191) iOS: Missing icons in Images.xcassets

2017-09-19 Thread Christian Speckner (JIRA)

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

Christian Speckner commented on CB-13191:
-

This is a major showstopper. As of now, it is impossible to build and release 
an app with cordova and XCode 9. The culprit is the missing support for the 
marketing icon (icon_appstore.png)

> iOS: Missing icons in Images.xcassets
> -
>
> Key: CB-13191
> URL: https://issues.apache.org/jira/browse/CB-13191
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-ios
>Reporter: Tim Brust
> Attachments: missing_icons_ios.png, missing_icons_watchos.png
>
>
> There are some missing icons when the generated Xcode project is opened.
> I believe this is the place where Images.xcassets are created: 
> https://github.com/apache/cordova-ios/blob/master/bin/templates/scripts/cordova/lib/prepare.js#L312
>  and a reference commit for iOS 9 update: 
> https://github.com/apache/cordova-ios/commit/d0521fe28d3c20054908d229298ba9ced1033c92
> The updated links from Apple regarding App Icon sizes and images can be found 
> here:
> https://developer.apple.com/ios/human-interface-guidelines/graphics/app-icon/
> https://developer.apple.com/watchos/human-interface-guidelines/icons-and-images/
> (should be changed in the code comment)
> See attached screenshot from Xcode Version 9.0 beta 5 (9M202q)
> h4. *List of missing icons*
> *iOS*
> App icons:
> 1024x1024 (@1) for the App Store - new/added in Xcode 9 and iOS
> Notifications:
> iPhone Notification iOS 7 - 11 (20x20 @2 and @3)
> iPad Notification iOS 7 - 11 (20x20 @1 and @2)
> *watchOS*
> There are currently *no* Apple Watch Icons at all:
> App icon:
> Apple Watch Companion Settings (29x29 @2 and @3)
> Home screen icon:
> Apple Watch Home Screen (all) (40x40 @2)
> Notification:
> Apple Watch Notification Center 38mm (24x24 @2)
> Apple Watch Notification Center 42mm (27.5x27.5 @2)
> Look icons (see here: 
> https://developer.apple.com/watchos/human-interface-guidelines/app-components)
> Short look icons
> Apple Watch Short Look 38mm (86x86 @2)
> Apple Watch Short Look 42mm (98x98 @2)
> Long look icons
> Apple Watch Long Look 38mm (40x40 @2)
> Apple Watch Long Look 42mm (44x44 @2)
> App Store
> Apple Watch App Store (1024x1024 @1)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit 2e9c6df041a13eb8a306521ceadee5d747580c42 in 
cordova-plugin-device-orientation's branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git;h=2e9c6df
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit aab47930b969ea74ace1d2637ae2527d316b4e8f in cordova-plugin-device's 
branch refs/heads/master from [~alsorokin]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device.git;h=aab4793 
]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit f953f1e58dc19d75e39910e4e4e80c9f389f2204 in 
cordova-plugin-device-motion's branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-motion.git;h=f953f1e
 ]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit a7354be79160de7e3ee1a0c68973ce4378379c11 in cordova-plugin-contacts's 
branch refs/heads/master from [~alsorokin]
[ 
https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-contacts.git;h=a7354be 
]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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



[jira] [Commented] (CB-13299) CI: Travis doesn't include node by default for Android images anymore

2017-09-19 Thread ASF subversion and git services (JIRA)

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

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

Commit b2107e0818b398484b0ddbc6371c123df0920025 in cordova-plugin-camera's 
branch refs/heads/master from [~alsorokin]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-camera.git;h=b2107e0 
]

CB-13299 (CI) Fix Android builds


> CI: Travis doesn't include node by default for Android images anymore
> -
>
> Key: CB-13299
> URL: https://issues.apache.org/jira/browse/CB-13299
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: cordova-plugin-battery-status, cordova-plugin-camera, 
> cordova-plugin-contacts, cordova-plugin-device, cordova-plugin-device-motion, 
> cordova-plugin-device-orientation, cordova-plugin-dialogs, 
> cordova-plugin-file, cordova-plugin-file-transfer, 
> cordova-plugin-geolocation, cordova-plugin-globalization, 
> cordova-plugin-inappbrowser, cordova-plugin-media, 
> cordova-plugin-media-capture, cordova-plugin-network-information, 
> cordova-plugin-screen-orientation, cordova-plugin-splashscreen, 
> cordova-plugin-statusbar, cordova-plugin-vibration, 
> cordova-plugin-wkwebview-engine
>Reporter: Alexander Sorokin
>Assignee: Alexander Sorokin
>  Labels: CI, triaged
>
> Example:
> https://travis-ci.org/apache/cordova-plugin-device-motion/builds/277031526?utm_source=github_status_medium=notification



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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