[jira] [Updated] (CB-11812) Apache Cordova-plugin-camera working only about 1/3 of time & very slow (~120 s delay)

2016-09-09 Thread Amy Johnson (JIRA)

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

Amy Johnson updated CB-11812:
-
Security: Public  (was: Non-Public)

> Apache Cordova-plugin-camera working only about 1/3 of time & very slow (~120 
> s delay)
> --
>
> Key: CB-11812
> URL: https://issues.apache.org/jira/browse/CB-11812
> Project: Apache Cordova
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>  Components: iOS, Plugin Camera
> Environment: iPhone 4s, 5c,5s, 6
>Reporter: Amy Johnson
>Priority: Critical
>  Labels: newbie
>   Original Estimate: 6h
>  Remaining Estimate: 6h
>
> Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
> 5c, or 5s or 6, only works about 1/3 of the time. Even then, takes 5-6 
> seconds to respond.
> This is original javascript code:
> var onDeviceReady;
> onDeviceReady = function() {
>   console.log(navigator.camera);
> };
> document.addEventListener('deviceready', onDeviceReady, false);
> exports.takePicture = function(success, error) {
>   if (!navigator.camera) {
> error();
> return;
>   }
>   console.log("About to take picture");
>   return navigator.camera.getPicture(success, error, {
> quality: 80,
> destinationType: Camera.DestinationType.FILE_URI
>   });
> };
> exports.hasCamera = function() {
>   return navigator.camera != null;
> }; 
> And here is the Xcode Log:
> Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
> this in the debugger.
> The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
> in  may also be helpful.
> 2016-09-06 07:55:45.810 Explorer[1434:579426] Passed in type public.item 
> doesn't conform to either public.content or public.data. If you are exporting 
> a new type, please ensure that it conforms to an appropriate parent type.
> 2016-09-06 07:55:45.849 Explorer[1434:579426] the behavior of the 
> UICollectionViewFlowLayout is not defined because:
> 2016-09-06 07:55:45.850 Explorer[1434:579426] the item width must be less 
> than the width of the UICollectionView minus the section insets left and 
> right values, minus the content insets left and right values.
> 2016-09-06 07:55:45.850 Explorer[1434:579426] The relevant 
> UICollectionViewFlowLayout instance is 
> <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>, and it is attached 
> to  gestureRecognizers = ; animations = { 
> bounds.origin=; 
> bounds.size=; position= 0x161274ed0>; }; layer = ; contentOffset: {0, 0}; 
> contentSize: {0, 0}> collection view layout: 
> <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>.
> 2016-09-06 07:55:45.851 Explorer[1434:579426] Make a symbolic breakpoint at 
> UICollectionViewFlowLayoutBreakForInvalidSizes to catch this in the debugger.
> 2016-09-06 07:55:46.053 Explorer[1434:579426] Unable to simultaneously 
> satisfy constraints.
>   Probably at least one of the constraints in the following list is one 
> you don't want. 
>   Try this: 
>   (1) look at each constraint and try to figure out which you 
> don't expect; 
>   (2) find the code that added the unwanted constraint or 
> constraints and fix it. 
> (
> " UIView:0x161312260.width - 32>",
> " UIView:0x1613700a0.width>",
> ""
> )
> Will attempt to recover by breaking constraint 
>  UIView:0x161312260.width - 32>
> Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
> this in the debugger.
> The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
> in  may also be helpful.



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

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



[jira] [Reopened] (CB-11812) Apache Cordova-plugin-camera working only about 1/3 of time & very slow (~120 s delay)

2016-09-09 Thread Amy Johnson (JIRA)

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

Amy Johnson reopened CB-11812:
--

> Apache Cordova-plugin-camera working only about 1/3 of time & very slow (~120 
> s delay)
> --
>
> Key: CB-11812
> URL: https://issues.apache.org/jira/browse/CB-11812
> Project: Apache Cordova
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>  Components: iOS, Plugin Camera
> Environment: iPhone 4s, 5c,5s, 6
>Reporter: Amy Johnson
>Priority: Critical
>  Labels: newbie
>   Original Estimate: 6h
>  Remaining Estimate: 6h
>
> Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
> 5c, or 5s or 6, only works about 1/3 of the time. Even then, takes 5-6 
> seconds to respond.
> This is original javascript code:
> var onDeviceReady;
> onDeviceReady = function() {
>   console.log(navigator.camera);
> };
> document.addEventListener('deviceready', onDeviceReady, false);
> exports.takePicture = function(success, error) {
>   if (!navigator.camera) {
> error();
> return;
>   }
>   console.log("About to take picture");
>   return navigator.camera.getPicture(success, error, {
> quality: 80,
> destinationType: Camera.DestinationType.FILE_URI
>   });
> };
> exports.hasCamera = function() {
>   return navigator.camera != null;
> }; 
> And here is the Xcode Log:
> Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
> this in the debugger.
> The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
> in  may also be helpful.
> 2016-09-06 07:55:45.810 Explorer[1434:579426] Passed in type public.item 
> doesn't conform to either public.content or public.data. If you are exporting 
> a new type, please ensure that it conforms to an appropriate parent type.
> 2016-09-06 07:55:45.849 Explorer[1434:579426] the behavior of the 
> UICollectionViewFlowLayout is not defined because:
> 2016-09-06 07:55:45.850 Explorer[1434:579426] the item width must be less 
> than the width of the UICollectionView minus the section insets left and 
> right values, minus the content insets left and right values.
> 2016-09-06 07:55:45.850 Explorer[1434:579426] The relevant 
> UICollectionViewFlowLayout instance is 
> <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>, and it is attached 
> to  gestureRecognizers = ; animations = { 
> bounds.origin=; 
> bounds.size=; position= 0x161274ed0>; }; layer = ; contentOffset: {0, 0}; 
> contentSize: {0, 0}> collection view layout: 
> <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>.
> 2016-09-06 07:55:45.851 Explorer[1434:579426] Make a symbolic breakpoint at 
> UICollectionViewFlowLayoutBreakForInvalidSizes to catch this in the debugger.
> 2016-09-06 07:55:46.053 Explorer[1434:579426] Unable to simultaneously 
> satisfy constraints.
>   Probably at least one of the constraints in the following list is one 
> you don't want. 
>   Try this: 
>   (1) look at each constraint and try to figure out which you 
> don't expect; 
>   (2) find the code that added the unwanted constraint or 
> constraints and fix it. 
> (
> " UIView:0x161312260.width - 32>",
> " UIView:0x1613700a0.width>",
> ""
> )
> Will attempt to recover by breaking constraint 
>  UIView:0x161312260.width - 32>
> Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
> this in the debugger.
> The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
> in  may also be helpful.



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

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



[jira] [Closed] (CB-11812) Apache Cordova-plugin-camera working only about 1/3 of time & very slow (~120 s delay)

2016-09-09 Thread Amy Johnson (JIRA)

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

Amy Johnson closed CB-11812.

Resolution: Fixed

> Apache Cordova-plugin-camera working only about 1/3 of time & very slow (~120 
> s delay)
> --
>
> Key: CB-11812
> URL: https://issues.apache.org/jira/browse/CB-11812
> Project: Apache Cordova
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>  Components: iOS, Plugin Camera
> Environment: iPhone 4s, 5c,5s, 6
>Reporter: Amy Johnson
>Priority: Critical
>  Labels: newbie
>   Original Estimate: 6h
>  Remaining Estimate: 6h
>
> Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
> 5c, or 5s or 6, only works about 1/3 of the time. Even then, takes 5-6 
> seconds to respond.
> This is original javascript code:
> var onDeviceReady;
> onDeviceReady = function() {
>   console.log(navigator.camera);
> };
> document.addEventListener('deviceready', onDeviceReady, false);
> exports.takePicture = function(success, error) {
>   if (!navigator.camera) {
> error();
> return;
>   }
>   console.log("About to take picture");
>   return navigator.camera.getPicture(success, error, {
> quality: 80,
> destinationType: Camera.DestinationType.FILE_URI
>   });
> };
> exports.hasCamera = function() {
>   return navigator.camera != null;
> }; 
> And here is the Xcode Log:
> Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
> this in the debugger.
> The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
> in  may also be helpful.
> 2016-09-06 07:55:45.810 Explorer[1434:579426] Passed in type public.item 
> doesn't conform to either public.content or public.data. If you are exporting 
> a new type, please ensure that it conforms to an appropriate parent type.
> 2016-09-06 07:55:45.849 Explorer[1434:579426] the behavior of the 
> UICollectionViewFlowLayout is not defined because:
> 2016-09-06 07:55:45.850 Explorer[1434:579426] the item width must be less 
> than the width of the UICollectionView minus the section insets left and 
> right values, minus the content insets left and right values.
> 2016-09-06 07:55:45.850 Explorer[1434:579426] The relevant 
> UICollectionViewFlowLayout instance is 
> <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>, and it is attached 
> to  gestureRecognizers = ; animations = { 
> bounds.origin=; 
> bounds.size=; position= 0x161274ed0>; }; layer = ; contentOffset: {0, 0}; 
> contentSize: {0, 0}> collection view layout: 
> <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>.
> 2016-09-06 07:55:45.851 Explorer[1434:579426] Make a symbolic breakpoint at 
> UICollectionViewFlowLayoutBreakForInvalidSizes to catch this in the debugger.
> 2016-09-06 07:55:46.053 Explorer[1434:579426] Unable to simultaneously 
> satisfy constraints.
>   Probably at least one of the constraints in the following list is one 
> you don't want. 
>   Try this: 
>   (1) look at each constraint and try to figure out which you 
> don't expect; 
>   (2) find the code that added the unwanted constraint or 
> constraints and fix it. 
> (
> " UIView:0x161312260.width - 32>",
> " UIView:0x1613700a0.width>",
> ""
> )
> Will attempt to recover by breaking constraint 
>  UIView:0x161312260.width - 32>
> Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
> this in the debugger.
> The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
> in  may also be helpful.



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

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



[jira] [Updated] (CB-11812) Apache Cordova-plugin-camera working only about 1/3 of time & very slow (~120 s delay)

2016-09-09 Thread Amy Johnson (JIRA)

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

Amy Johnson updated CB-11812:
-
   Environment: iPhone 4s, 5c,5s, 6  (was: iPhone 4s, 5c)
Remaining Estimate: 6h  (was: 24h)
 Original Estimate: 6h  (was: 24h)
   Description: 
Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
5c, or 5s or 6, only works about 1/3 of the time. Even then, takes 5-6 seconds 
to respond.

This is original javascript code:

var onDeviceReady;

onDeviceReady = function() {
  console.log(navigator.camera);
};

document.addEventListener('deviceready', onDeviceReady, false);

exports.takePicture = function(success, error) {
  if (!navigator.camera) {
error();
return;
  }
  console.log("About to take picture");
  return navigator.camera.getPicture(success, error, {
quality: 80,
destinationType: Camera.DestinationType.FILE_URI
  });
};

exports.hasCamera = function() {
  return navigator.camera != null;
}; 

And here is the Xcode Log:

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
in  may also be helpful.
2016-09-06 07:55:45.810 Explorer[1434:579426] Passed in type public.item 
doesn't conform to either public.content or public.data. If you are exporting a 
new type, please ensure that it conforms to an appropriate parent type.
2016-09-06 07:55:45.849 Explorer[1434:579426] the behavior of the 
UICollectionViewFlowLayout is not defined because:
2016-09-06 07:55:45.850 Explorer[1434:579426] the item width must be less than 
the width of the UICollectionView minus the section insets left and right 
values, minus the content insets left and right values.
2016-09-06 07:55:45.850 Explorer[1434:579426] The relevant 
UICollectionViewFlowLayout instance is 
<_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>, and it is attached 
to ; animations = { 
bounds.origin=; bounds.size=; position=; }; layer = ; contentOffset: {0, 0}; contentSize: {0, 0}> collection view 
layout: <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>.
2016-09-06 07:55:45.851 Explorer[1434:579426] Make a symbolic breakpoint at 
UICollectionViewFlowLayoutBreakForInvalidSizes to catch this in the debugger.
2016-09-06 07:55:46.053 Explorer[1434:579426] Unable to simultaneously satisfy 
constraints.
Probably at least one of the constraints in the following list is one 
you don't want. 
Try this: 
(1) look at each constraint and try to figure out which you 
don't expect; 
(2) find the code that added the unwanted constraint or 
constraints and fix it. 
(
"",
"",
""
)

Will attempt to recover by breaking constraint 


Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
in  may also be helpful.


  was:
Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
5c, only works about 1/3 of the time. Even then, takes 5-6 seconds to respond.

This is original javascript code:

var onDeviceReady;

onDeviceReady = function() {
  console.log(navigator.camera);
};

document.addEventListener('deviceready', onDeviceReady, false);

exports.takePicture = function(success, error) {
  if (!navigator.camera) {
error();
return;
  }
  console.log("About to take picture");
  return navigator.camera.getPicture(success, error, {
quality: 80,
destinationType: Camera.DestinationType.FILE_URI
  });
};

exports.hasCamera = function() {
  return navigator.camera != null;
}; 

And here is the Xcode Log:

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
in  may also be helpful.
2016-09-06 07:55:45.810 Explorer[1434:579426] Passed in type public.item 
doesn't conform to either public.content or public.data. If you are exporting a 
new type, please ensure that it conforms to an appropriate parent type.
2016-09-06 07:55:45.849 Explorer[1434:579426] the behavior of the 
UICollectionViewFlowLayout is not defined because:
2016-09-06 07:55:45.850 Explorer[1434:579426] the item width must be less than 
the width of the UICollectionView minus the section insets left and right 
values, minus the content insets left and right values.
2016-09-06 07:55:45.850 Explorer[1434:579426] The relevant 
UICollectionViewFlowLayout instance is 
<_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>, and it is attached 
to ; animations = { 
bounds.origin=; bounds.size=; position=; }; layer = ; contentOffset: {0, 0}; contentSize: {0, 0}> collection view 
layout: <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>.
2016-09-06 07:55:45.851 Explorer[1434:579426] 

[jira] [Updated] (CB-11812) Apache Cordova-plugin-camera working only about 1/3 of time & very slow on iPhones 4s & 5c

2016-09-07 Thread Amy Johnson (JIRA)

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

Amy Johnson updated CB-11812:
-
Description: 
Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
5c, only works about 1/3 of the time. Even then, takes 5-6 seconds to respond.

This is original javascript code:

var onDeviceReady;

onDeviceReady = function() {
  console.log(navigator.camera);
};

document.addEventListener('deviceready', onDeviceReady, false);

exports.takePicture = function(success, error) {
  if (!navigator.camera) {
error();
return;
  }
  console.log("About to take picture");
  return navigator.camera.getPicture(success, error, {
quality: 80,
destinationType: Camera.DestinationType.FILE_URI
  });
};

exports.hasCamera = function() {
  return navigator.camera != null;
}; 

And here is the Xcode Log:

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
in  may also be helpful.
2016-09-06 07:55:45.810 Explorer[1434:579426] Passed in type public.item 
doesn't conform to either public.content or public.data. If you are exporting a 
new type, please ensure that it conforms to an appropriate parent type.
2016-09-06 07:55:45.849 Explorer[1434:579426] the behavior of the 
UICollectionViewFlowLayout is not defined because:
2016-09-06 07:55:45.850 Explorer[1434:579426] the item width must be less than 
the width of the UICollectionView minus the section insets left and right 
values, minus the content insets left and right values.
2016-09-06 07:55:45.850 Explorer[1434:579426] The relevant 
UICollectionViewFlowLayout instance is 
<_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>, and it is attached 
to ; animations = { 
bounds.origin=; bounds.size=; position=; }; layer = ; contentOffset: {0, 0}; contentSize: {0, 0}> collection view 
layout: <_UIAlertControllerCollectionViewFlowLayout: 0x16110c410>.
2016-09-06 07:55:45.851 Explorer[1434:579426] Make a symbolic breakpoint at 
UICollectionViewFlowLayoutBreakForInvalidSizes to catch this in the debugger.
2016-09-06 07:55:46.053 Explorer[1434:579426] Unable to simultaneously satisfy 
constraints.
Probably at least one of the constraints in the following list is one 
you don't want. 
Try this: 
(1) look at each constraint and try to figure out which you 
don't expect; 
(2) find the code that added the unwanted constraint or 
constraints and fix it. 
(
"",
"",
""
)

Will attempt to recover by breaking constraint 


Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch 
this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed 
in  may also be helpful.


  was:
Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
5c, only works about 1/3 of the time. Even then, takes 5-6 seconds to respond.

This is original javascript code:

var onDeviceReady;

onDeviceReady = function() {
  console.log(navigator.camera);
};

document.addEventListener('deviceready', onDeviceReady, false);

exports.takePicture = function(success, error) {
  if (!navigator.camera) {
error();
return;
  }
  console.log("About to take picture");
  return navigator.camera.getPicture(success, error, {
quality: 80,
destinationType: Camera.DestinationType.FILE_URI
  });
};

exports.hasCamera = function() {
  return navigator.camera != null;
}; 




> Apache Cordova-plugin-camera working only about 1/3 of time & very slow on 
> iPhones 4s & 5c
> --
>
> Key: CB-11812
> URL: https://issues.apache.org/jira/browse/CB-11812
> Project: Apache Cordova
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>  Components: iOS, Plugin Camera
> Environment: iPhone 4s, 5c
>Reporter: Amy Johnson
>Priority: Critical
>  Labels: newbie
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
> 5c, only works about 1/3 of the time. Even then, takes 5-6 seconds to respond.
> This is original javascript code:
> var onDeviceReady;
> onDeviceReady = function() {
>   console.log(navigator.camera);
> };
> document.addEventListener('deviceready', onDeviceReady, false);
> exports.takePicture = function(success, error) {
>   if (!navigator.camera) {
> error();
> return;
>   }
>   console.log("About to take picture");
>   return navigator.camera.getPicture(success, error, {
> quality: 80,
> destinationType: Camera.DestinationType.FILE_URI
>   });
> };
> exports.hasCamera = function() {
>   return 

[jira] [Created] (CB-11812) Apache Cordova-plugin-camera working only about 1/3 of time & very slow on iPhones 4s & 5c

2016-09-06 Thread Amy Johnson (JIRA)
Amy Johnson created CB-11812:


 Summary: Apache Cordova-plugin-camera working only about 1/3 of 
time & very slow on iPhones 4s & 5c
 Key: CB-11812
 URL: https://issues.apache.org/jira/browse/CB-11812
 Project: Apache Cordova
  Issue Type: Bug
  Security Level: Public (Anyone can view this level - this is the default.)
  Components: iOS, Plugin Camera
 Environment: iPhone 4s, 5c
Reporter: Amy Johnson
Priority: Critical


Cordova app has cordova-plugin-camera .  When called from app on iPhone 4s or 
5c, only works about 1/3 of the time. Even then, takes 5-6 seconds to respond.

This is original javascript code:

var onDeviceReady;

onDeviceReady = function() {
  console.log(navigator.camera);
};

document.addEventListener('deviceready', onDeviceReady, false);

exports.takePicture = function(success, error) {
  if (!navigator.camera) {
error();
return;
  }
  console.log("About to take picture");
  return navigator.camera.getPicture(success, error, {
quality: 80,
destinationType: Camera.DestinationType.FILE_URI
  });
};

exports.hasCamera = function() {
  return navigator.camera != null;
}; 





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

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



[jira] [Closed] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-09-06 Thread Amy Johnson (JIRA)

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

Amy Johnson closed CB-11715.

Resolution: Fixed

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Security Level: Public(Anyone can view this level - this is the 
> default.) 
>  Components: iOS
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>  Labels: beginner, newbie
> Attachments: screenshot-1.png
>
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my system log shown in Xcode after I launch Simulator from there:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Comment Edited] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-20 Thread Amy Johnson (JIRA)

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

Amy Johnson edited comment on CB-11715 at 8/20/16 1:50 PM:
---

You WERE right! It WAS a plugin. I install the plugins through some pretty long 
batch/gulp type files, and at first I thought I had commented all the plugins 
out like you suggested, but then I realized I had missed a couple. 

(I was still running the batch files because they do other tasks I needed, like 
installing patches, customizing config.xml, moving files, etc.) In any case, 
now that I got ALL the plugins removed, the login screen no longer hangs. 

THANK YOU so much for the excellent advice!! 


was (Author: amyming...@gmail.com):
You WERE right! It WAS a plugin. I install the plugins through some pretty long 
batch/gulp type files, and at first I thought I had commented all the plugins 
out like you suggested, but then I realized I had missed a couple.

THANK YOU so much for the excellent advice!! 

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>  Labels: beginner, newbie
> Attachments: screenshot-1.png
>
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my system log shown in Xcode after I launch Simulator from there:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Commented] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-20 Thread Amy Johnson (JIRA)

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

Amy Johnson commented on CB-11715:
--

You WERE right! It WAS a plugin. I install the plugins through some pretty long 
batch/gulp type files, and at first I thought I had commented all the plugins 
out like you suggested, but then I realized I had missed a couple.

THANK YOU so much for the excellent advice!! 

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>  Labels: beginner, newbie
> Attachments: screenshot-1.png
>
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my system log shown in Xcode after I launch Simulator from there:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Commented] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-18 Thread Amy Johnson (JIRA)

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

Amy Johnson commented on CB-11715:
--

Thank you for the excellent ideas. I tried commenting out all the plugins, but 
no luck. I'm not using the splash screen plugin, but good thought. Xcode is 
able to open non-Cordova apps, so the problem isn't Xcode itself.  

Do you have any other ideas to try? I really appreciated your feedback!  

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>Assignee: Tobias Bocanegra
>  Labels: beginner, newbie
> Attachments: screenshot-1.png
>
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my system log shown in Xcode after I launch Simulator from there:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Updated] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-17 Thread Amy Johnson (JIRA)

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

Amy Johnson updated CB-11715:
-
Attachment: (was: screenshot-2.png)

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>Assignee: Tobias Bocanegra
>  Labels: beginner, newbie
> Attachments: screenshot-1.png
>
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my system log shown in Xcode after I launch Simulator from there:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Updated] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-16 Thread Amy Johnson (JIRA)

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

Amy Johnson updated CB-11715:
-
Attachment: screenshot-2.png

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>Assignee: Tobias Bocanegra
>  Labels: beginner, newbie
> Attachments: screenshot-1.png, screenshot-2.png
>
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my system log shown in Xcode after I launch Simulator from there:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Updated] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-16 Thread Amy Johnson (JIRA)

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

Amy Johnson updated CB-11715:
-
Attachment: screenshot-1.png

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>Assignee: Tobias Bocanegra
>  Labels: beginner, newbie
> Attachments: screenshot-1.png
>
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my system log shown in Xcode after I launch Simulator from there:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Updated] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-16 Thread Amy Johnson (JIRA)

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

Amy Johnson updated CB-11715:
-
Description: 
--I'm new to this, so I apologize for any mistakes. 

--When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
Simulator gets stuck on an endless loading screen. 
(Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)

--By "endless," I mean that I have let it run overnight, and it still appears 
to be loading (blue bar spiraling near bottom of screen) in the morning. 

--This loading problem is probably due to a mistake on my end, but it seems 
like it might be a Cordova bug that there are no error messages. 

Here is my system log shown in Xcode after I launch Simulator from there:
2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
from 2 to 0, cookie file: 
file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
version 4.2.0 is starting.
2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, App: 
YES
2016-08-16 21:54:12.677 myApp[10960:414442] 

Started backup to iCloud! Please be careful.
Your application might be rejected by Apple if you store too much data.
For more information please read "iOS Data Storage Guidelines" at:
https://developer.apple.com/icloud/documentation/data-storage/
To disable web storage backup to iCloud, set the BackupWebStorage preference to 
"local" in the Cordova config.xml file

2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 0.137031ms
2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
resources
2016-08-16 21:54:12.790 myApp[10960:414442] 
[CDVTimer][intentandnavigationfilter] 1.496971ms
2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
0.087976ms
2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
76.799035ms
2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page load.
2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=

Again, I apologize for any mistakes, as I'm new to both Cordova and this forum.

  was:
--I'm new to this, so I apologize for any mistakes. 

--When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
Simulator gets stuck on an endless loading screen. 
(Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)

--By "endless," I mean that I have let it run overnight, and it still appears 
to be loading (blue bar spiraling near bottom of screen) in the morning. 

--This loading problem is probably due to a mistake on my end, but it seems 
like it might be a Cordova bug that there are no error messages. 

Here is my log:
2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
from 2 to 0, cookie file: 
file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
version 4.2.0 is starting.
2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, App: 
YES
2016-08-16 21:54:12.677 myApp[10960:414442] 

Started backup to iCloud! Please be careful.
Your application might be rejected by Apple if you store too much data.
For more information please read "iOS Data Storage Guidelines" at:
https://developer.apple.com/icloud/documentation/data-storage/
To disable web storage backup to iCloud, set the BackupWebStorage preference to 
"local" in the Cordova config.xml file

2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 0.137031ms
2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
resources
2016-08-16 21:54:12.790 myApp[10960:414442] 
[CDVTimer][intentandnavigationfilter] 1.496971ms
2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
0.087976ms
2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
76.799035ms
2016-08-16 

[jira] [Comment Edited] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-16 Thread Amy Johnson (JIRA)

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

Amy Johnson edited comment on CB-11715 at 8/17/16 3:40 AM:
---

BTW, when I do cordova emulate iOS in Terminal, it only goes through building 
info, & then says the following in Terminal:

** BUILD SUCCEEDED **

No target specified for emulator. Deploying to iPhone-6s-Plus, 9.3 simulator
logPath: 
/Users/UserName/companyName-app/cordova/appName/platforms/ios/cordova/console.log
Amy-Johnsons-iMac-2:appName userName$ 

(and the console.log file is not in the path when I look for it).



was (Author: amyming...@gmail.com):
BTW, when I do cordova emulate iOS in Terminal, it only goes through building 
info, & then says,

** BUILD SUCCEEDED **

No target specified for emulator. Deploying to iPhone-6s-Plus, 9.3 simulator
logPath: 
/Users/UserName/companyName-app/cordova/appName/platforms/ios/cordova/console.log
Amy-Johnsons-iMac-2:appName userName$ 

(and the console.log file is not in the path when I look for it).

(The log shown in the original question was from when I launch Simulator from 
Xcode, or go to System Log from Simulator.)

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, OSX
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>Assignee: Tobias Bocanegra
>  Labels: beginner, newbie
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my log:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Commented] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-16 Thread Amy Johnson (JIRA)

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

Amy Johnson commented on CB-11715:
--

OK, last comment from myself... Sorry, but this is what it says when launching 
System Console from Simulator, so maybe that does count as providing error 
messages (although I have no idea what they mean):

Aug 16 22:23:27 Amy-Johnsons-iMac-2 assertiond[10903]: assertion failed: 15G31 
13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
Aug 16 22:23:28 --- last message repeated 1 time ---
Aug 16 22:23:28 Amy-Johnsons-iMac-2 appName[11145]: Resetting plugins due to 
page load.
Aug 16 22:23:28 Amy-Johnsons-iMac-2 assertiond[10903]: assertion failed: 15G31 
13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
Aug 16 22:23:28 --- last message repeated 1 time ---
Aug 16 22:23:28 Amy-Johnsons-iMac-2 appName[11145]: Finished load of: 
file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/12CE274E-A6CF-4809-A76B-A8512F102574/appName.app/www/index_cordova.html?cordova=
Aug 16 22:23:29 Amy-Johnsons-iMac-2 assertiond[10903]: assertion failed: 15G31 
13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
Aug 16 22:23:32 --- last message repeated 1 time ---
Aug 16 22:23:32 Amy-Johnsons-iMac-2 routined[10888]: CoreLocation: Error 
occurred while trying to retrieve motion state update: CMErrorDomain Code:104
Aug 16 22:29:32 Amy-Johnsons-iMac-2 routined[10888]: CoreLocation: Error 
occurred while trying to retrieve motion state update: CMErrorDomain Code:104
Aug 16 22:29:32 Amy-Johnsons-iMac-2 syslogd[10885]: ASL Sender Statistics
Aug 16 22:31:17 Amy-Johnsons-iMac-2 assertiond[10903]: assertion failed: 15G31 
13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
Aug 16 22:31:47 --- last message repeated 1 time ---

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, OSX
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>Assignee: Tobias Bocanegra
>  Labels: beginner, newbie
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my log:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> 

[jira] [Commented] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-16 Thread Amy Johnson (JIRA)

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

Amy Johnson commented on CB-11715:
--

BTW, when I do cordova emulate iOS in Terminal, it only goes through building 
info, & then says,

** BUILD SUCCEEDED **

No target specified for emulator. Deploying to iPhone-6s-Plus, 9.3 simulator
logPath: 
/Users/UserName/companyName-app/cordova/appName/platforms/ios/cordova/console.log
Amy-Johnsons-iMac-2:appName userName$ 

(and the console.log file is not in the path when I look for it).

(The log shown in the original question was from when I launch Simulator from 
Xcode, or go to System Log from Simulator.)

> iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.
> -
>
> Key: CB-11715
> URL: https://issues.apache.org/jira/browse/CB-11715
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: iOS, OSX
>Affects Versions: 6.3.1
> Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
> (but also hangs if Simulator launched directly from Terminal)  iOS-deply 
> 1.8.6, Cordova 6.3.1 (native platform version 4.2.0)
>Reporter: Amy Johnson
>Assignee: Tobias Bocanegra
>  Labels: beginner, newbie
>
> --I'm new to this, so I apologize for any mistakes. 
> --When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
> Simulator gets stuck on an endless loading screen. 
> (Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)
> --By "endless," I mean that I have let it run overnight, and it still appears 
> to be loading (blue bar spiraling near bottom of screen) in the morning. 
> --This loading problem is probably due to a mistake on my end, but it seems 
> like it might be a Cordova bug that there are no error messages. 
> Here is my log:
> 2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
> from 2 to 0, cookie file: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
> 2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
> version 4.2.0 is starting.
> 2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, 
> App: YES
> 2016-08-16 21:54:12.677 myApp[10960:414442] 
> Started backup to iCloud! Please be careful.
> Your application might be rejected by Apple if you store too much data.
> For more information please read "iOS Data Storage Guidelines" at:
> https://developer.apple.com/icloud/documentation/data-storage/
> To disable web storage backup to iCloud, set the BackupWebStorage preference 
> to "local" in the Cordova config.xml file
> 2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
> 2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 
> 0.137031ms
> 2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
> resources
> 2016-08-16 21:54:12.790 myApp[10960:414442] 
> [CDVTimer][intentandnavigationfilter] 1.496971ms
> 2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
> 0.087976ms
> 2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
> 2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
> 76.799035ms
> 2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page 
> load.
> 2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
> file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=
> Again, I apologize for any mistakes, as I'm new to both Cordova and this 
> forum.



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

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



[jira] [Created] (CB-11715) iOS Simulator hangs on Endless App Loading/Launching Screen. No Err Msgs.

2016-08-16 Thread Amy Johnson (JIRA)
Amy Johnson created CB-11715:


 Summary: iOS Simulator hangs on Endless App Loading/Launching 
Screen. No Err Msgs.
 Key: CB-11715
 URL: https://issues.apache.org/jira/browse/CB-11715
 Project: Apache Cordova
  Issue Type: Bug
  Components: iOS, OSX
Affects Versions: 6.3.1
 Environment: osx 10.11.6, el capitan, Simulator 9.3, using Xcode 7.3 
(but also hangs if Simulator launched directly from Terminal)  iOS-deply 1.8.6, 
Cordova 6.3.1 (native platform version 4.2.0)
Reporter: Amy Johnson
Assignee: Tobias Bocanegra


--I'm new to this, so I apologize for any mistakes. 

--When I try to launch my Cordova app in Simulator (from Xcode or Terminal), 
Simulator gets stuck on an endless loading screen. 
(Cordova emulate iOS...  Endless loading screen.) (The build succeeds.)

--By "endless," I mean that I have let it run overnight, and it still appears 
to be loading (blue bar spiraling near bottom of screen) in the morning. 

--This loading problem is probably due to a mistake on my end, but it seems 
like it might be a Cordova bug that there are no error messages. 

Here is my log:
2016-08-16 21:54:12.449 myApp[10960:414442] DiskCookieStorage changing policy 
from 2 to 0, cookie file: 
file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Data/Application/72317999-A72E-455C-A8B9-E47E3F25614E/Library/Cookies/co.domainName.myApp.binarycookies
2016-08-16 21:54:12.645 myApp[10960:414442] Apache Cordova native platform 
version 4.2.0 is starting.
2016-08-16 21:54:12.646 myApp[10960:414442] Multi-tasking -> Device: YES, App: 
YES
2016-08-16 21:54:12.677 myApp[10960:414442] 

Started backup to iCloud! Please be careful.
Your application might be rejected by Apple if you store too much data.
For more information please read "iOS Data Storage Guidelines" at:
https://developer.apple.com/icloud/documentation/data-storage/
To disable web storage backup to iCloud, set the BackupWebStorage preference to 
"local" in the Cordova config.xml file

2016-08-16 21:54:12.785 myApp[10960:414442] Using UIWebView
2016-08-16 21:54:12.788 myApp[10960:414442] [CDVTimer][handleopenurl] 0.137031ms
2016-08-16 21:54:12.789 myApp[10960:414442] Unlimited access to network 
resources
2016-08-16 21:54:12.790 myApp[10960:414442] 
[CDVTimer][intentandnavigationfilter] 1.496971ms
2016-08-16 21:54:12.790 myApp[10960:414442] [CDVTimer][gesturehandler] 
0.087976ms
2016-08-16 21:54:12.839 myApp[10960:414442] [CDVTimer][file] 49.188972ms
2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][intercom] 24.819970ms
2016-08-16 21:54:12.864 myApp[10960:414442] [CDVTimer][TotalPluginStartup] 
76.799035ms
2016-08-16 21:54:13.734 myApp[10960:414442] Resetting plugins due to page load.
2016-08-16 21:54:14.497 myApp[10960:414442] Finished load of: 
file:///Users/userName/Library/Developer/CoreSimulator/Devices/5F95829F-87E0-4E99-AD88-828C29AB29F1/data/Containers/Bundle/Application/A1C67A1E-3AC6-4A7A-AEC0-095B89C3B2D9/myApp.app/www/index_cordova.html?cordova=

Again, I apologize for any mistakes, as I'm new to both Cordova and this forum.



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

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