App crash in didFinishPickingMediaWithInfo - iphone

My app is crashing when the user records a video and then clicks choose. Here is my code:
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
picker.mediaTypes = [[NSArray alloc] initWithObjects:(NSString *)kUTTypeMovie, nil];
//picker.mediaTypes = [UIImagePickerController availableMediaTypesForSourceType:picker.sourceType];
picker.allowsEditing = NO;
picker.delegate = self;
picker.videoQuality = UIImagePickerControllerQualityTypeMedium;
[self presentModalViewController:picker animated:YES];
-(void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
// [self dismissModalViewControllerAnimated:YES];
AppDelegate *del = [[UIApplication sharedApplication]delegate];
NSString *mediaType = [info objectForKey: UIImagePickerControllerMediaType];
moviePath = [[info objectForKey:UIImagePickerControllerMediaURL]path];..//using this for upload
del.globalMoviePath = moviePath;
if (CFStringCompare ((__bridge CFStringRef) mediaType, kUTTypeMovie, 0)== kCFCompareEqualTo)
{
moviePath = [[info objectForKey:UIImagePickerControllerMediaURL] path];
del.globalMoviePath = moviePath;
picker.videoMaximumDuration = 60.0f;
picker.cameraCaptureMode = UIImagePickerControllerCameraCaptureModeVideo;
NSLog(#"nrgkrg===>%#",moviePath);
videoUrl=(NSURL*)[info objectForKey:UIImagePickerControllerMediaURL];
NSLog(#"Urlllll===>%#",videoUrl);
videoData = [NSData dataWithContentsOfURL:videoUrl];
del.globalMoviePath = moviePath;
NSLog(#"video is====>%#",del.globalMoviePath);
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:videoUrl];
UIImage *thumbnail = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];
[player stop];
videoImage = [[UIImageView alloc]initWithImage:thumbnail];
//NSLog(#"imegsvideo====>%#",thumbnail);
//if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(moviePath))
//{
// UISaveVideoAtPathToSavedPhotosAlbum (moviePath, self, #selector(video:didFinishSavingWithError:contextInfo:), nil);
// }
//MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:videoUrl];
//UIImage *thumbnail = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];
}
[self dismissModalViewControllerAnimated:YES];
//[[picker parentViewController] dismissModalViewControllerAnimated: YES];
}
When the user records a video and clicks choose app gets crashed but works fine when selected from camera roll.
Please help!!
Here's the log:
Nov 29 20:28:14 ReportCrash[259] <Notice>: Formulating crash report for process [254]
Nov 29 20:28:14 com.apple.launchd[1] <Warning>: (UIKitApplication:[0xcc37]) Job appears to have crashed: Segmentation fault: 11
Nov 29 20:28:14 backboardd[52] <Warning>: Application 'UIKitApplication:[0xcc37]' exited abnormally with signal 11: Segmentation fault: 11
Nov 29 20:28:14 ReportCrash[259] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
Nov 29 20:28:14 ReportCrash[259] <Notice>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/ using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) mstreamd: Checking on job state for Photo Stream
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) mstreamd: No jobs scheduled for Photo Stream.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) mstreamd: Checking on job state for Shared Stream
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) mstreamd: No jobs scheduled for Shared Stream.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) PS: Media stream daemon stopping.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSIOSAlbumSharingDaemon: 0x1ee72590>: Shared Streams daemon shutting down.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSIOSAlbumSharingDaemon: 0x1ee72590>: Shutting down state machine for personID 1446684163.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSASStateMachine: 0x1ed3e060>: Shutting down uploader.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSASStateMachine: 0x1ed3e060>: Shutting down downloader.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSASStateMachine: 0x1ed3e060>: Shutting down state machine.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSIOSAlbumSharingDaemon: 0x1ee72590>: Shutting down model.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSASServerSideModel: 0x1ed39d50>: Command Queue has shut down.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSIOSAlbumSharingDaemon: 0x1ee72590>: Model has shut down.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) AS: <MSIOSAlbumSharingDaemon: 0x1ee72590>: Shared Streams daemon has shut down.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Note ) mstreamd: <MSPowerBudget: 0x1ed394b0>: Stopping post-foreground timer.
Nov 29 20:28:38 mstreamd[257] <Notice>: (Warn ) mstreamd: mstreamd shutting down.
Nov 29 20:49:16 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state pluggedin_screen_off even though we are not in it, doing nothing
Nov 29 20:49:16 kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 0
Nov 29 20:49:16 kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType Detached
Nov 29 20:49:16 kernel[0] <Debug>: virtual IOReturn AppleUSBDeviceMux::message(UInt32, IOService *, void *) - kMessageInterfaceWasDeActivated
Nov 29 20:49:16 kernel[0] <Debug>: AppleUSBDeviceMux::reportStats: USB mux statistics:
Nov 29 20:49:16 kernel[0] <Debug>: USB mux: 190 reads / 0 errors, 899 writes / 0 errors
Nov 29 20:49:16 kernel[0] <Debug>: USB mux: 0 short packets, 0 dups
Nov 29 20:49:16 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state pluggedin_charging even though we are not in it, doing nothing
Nov 29 20:49:16 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state unplugged_screen_off even though we are not in it, doing nothing
Nov 29 20:49:16 ptpd[104] <Notice>: PTP interface has been deactivated.
Nov 29 20:49:18 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state unplugged_asleep even though we are not in it, doing nothing
Nov 29 20:49:18 kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 1
Nov 29 20:49:18 kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType USBHost
Nov 29 20:49:18 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state unplugged_screen_off even though we are not in it, doing nothing
Nov 29 20:49:18 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state pluggedin_screen_off even though we are not in it, doing nothing
Nov 29 20:49:19 ptpd[104] <Notice>: PTP interface has been activated at high speed.
Nov 29 20:49:56 lockdownd[29] <Notice>: 2fe93000 special_case_get: MGCopyAnswer(kMGQMobileEquipmentIdentifier) returned NULL
Nov 29 20:49:56 lockdownd[29] <Notice>: 2fe93000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
Nov 29 20:49:56 mobile_installation_proxy[265] <Error>: 0x3cbd7b88 MobileInstallationSlowLookupBreak: MobileInstallationBrowse was called without specifying an options dictionary containing kLookupReturnAttributesKey. This usage is inefficient and may cause performance problems. Break on MobileInstallationSlowLookupBreak to debug.
Nov 29 20:49:56 mobile_installation_proxy[265] <Error>: 0x3cbd7b88 MobileInstallationSlowLookupBreak: Existing options dictionary: <CFBasicHash 0x1c545b90 [0x3bfb1100]>{type = mutable dict, count = 1,
entries =>
6 : <CFString 0x1c545bc0 [0x3bfb1100]>{contents = "ApplicationType"} = <CFString 0x1c545b30 [0x3bfb1100]>{contents = "User"}
}
Nov 29 20:49:57 mc_mobile_tunnel[267] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
Nov 29 20:49:57 mc_mobile_tunnel[267] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
Nov 29 20:49:57 mc_mobile_tunnel[268] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
Nov 29 20:49:57 mc_mobile_tunnel[268] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
Nov 29 20:49:57 lockdownd[29] <Notice>: 2fe93000 set_response_error: handle_start_session SessionActive
Nov 29 20:49:57 lockdownd[29] <Notice>: 2fe93000 set_response_error: handle_start_session SessionActive
Nov 29 20:50:03 mc_mobile_tunnel[270] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
Nov 29 20:50:03 mc_mobile_tunnel[270] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
Nov 29 20:51:31 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state pluggedin_screen_off even though we are not in it, doing nothing
Nov 29 20:51:31 kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 0
Nov 29 20:51:31 kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType Detached
Nov 29 20:51:31 kernel[0] <Debug>: virtual IOReturn AppleUSBDeviceMux::message(UInt32, IOService *, void *) - kMessageInterfaceWasDeActivated
Nov 29 20:51:31 kernel[0] <Debug>: AppleUSBDeviceMux::reportStats: USB mux statistics:
Nov 29 20:51:31 kernel[0] <Debug>: USB mux: 195 reads / 0 errors, 493 writes / 0 errors
Nov 29 20:51:31 kernel[0] <Debug>: USB mux: 0 short packets, 0 dups
Nov 29 20:51:31 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state pluggedin_charging even though we are not in it, doing nothing
Nov 29 20:51:31 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state unplugged_screen_off even though we are not in it, doing nothing
Nov 29 20:51:31 ptpd[104] <Notice>: PTP interface has been deactivated.
Nov 29 20:51:41 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state unplugged_asleep even though we are not in it, doing nothing
Nov 29 20:51:41 kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableDetect 1
Nov 29 20:51:41 kernel[0] <Debug>: AppleD1881PMUPowerSource: AppleUSBCableType USBHost
Nov 29 20:51:41 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state unplugged_screen_off even though we are not in it, doing nothing
Nov 29 20:51:41 UserEventAgent[13] <Warning>: PLAggregateState Error: Leaving state pluggedin_screen_off even though we are not in it, doing nothing
Nov 29 20:51:41 ptpd[272] <Error>: ptpd: startResponder
Nov 29 20:51:41 kernel[0] <Debug>: launchd[272] Builtin profile: ptpd (sandbox)
Nov 29 20:51:42 ptpd[272] <Notice>: PTP interface has been activated at high speed.
Nov 29 20:51:43 lockdownd[29] <Notice>: 2ffcf000 verify_pair_record: The strings don't match. Is this really a UUID?
Nov 29 20:51:43 lockdownd[29] <Notice>: 2ffcf000 store_escrow_record: Creating escrow bag (hash=9263ecf9c114f3a5cecdf7a52df193b4ce25044f) for 30264900-17792825678462560
Nov 29 20:51:52 lockdownd[29] <Notice>: 01442000 verify_pair_record: The strings don't match. Is this really a UUID?
Nov 29 20:51:52 lockdownd[29] <Notice>: 01442000 store_escrow_record: Creating escrow bag (hash=9de39584e1758f58137d28e4bd8c2fd79b5ba0a2) for 30264900-1682617038156454252
Nov 29 20:51:53 lockdownd[29] <Notice>: 01442000 special_case_get: MGCopyAnswer(kMGQMobileEquipmentIdentifier) returned NULL
Nov 29 20:51:53 lockdownd[29] <Notice>: 01442000 copy_phonenumber: CTSettingCopyMyPhoneNumber() returned NULL
Nov 29 20:51:53 mobile_installation_proxy[275] <Error>: 0x3cbd7b88 MobileInstallationSlowLookupBreak: MobileInstallationBrowse was called without specifying an options dictionary containing kLookupReturnAttributesKey. This usage is inefficient and may cause performance problems. Break on MobileInstallationSlowLookupBreak to debug.
Nov 29 20:51:53 mobile_installation_proxy[275] <Error>: 0x3cbd7b88 MobileInstallationSlowLookupBreak: Existing options dictionary: <CFBasicHash 0x1c5119d0 [0x3bfb1100]>{type = mutable dict, count = 1,
entries =>
6 : <CFString 0x1c511a00 [0x3bfb1100]>{contents = "ApplicationType"} = <CFString 0x1c511970 [0x3bfb1100]>{contents = "User"}
}
Nov 29 20:51:53 mc_mobile_tunnel[277] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
Nov 29 20:51:53 mc_mobile_tunnel[277] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
Nov 29 20:51:53 mc_mobile_tunnel[278] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
Nov 29 20:51:53 mc_mobile_tunnel[278] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
Nov 29 20:51:55 mc_mobile_tunnel[280] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
Nov 29 20:51:55 mc_mobile_tunnel[280] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
Nov 29 20:52:01 iPhone4S mc_mobile_tunnel[282] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
Nov 29 20:52:01 iPhone4S mc_mobile_tunnel[282] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.

this is because may be you are dismissing view just after dismissing picker:
[picker dismissModalViewControllerAnimated:YES];
[self dismissModalViewControllerAnimated:YES];
as you have used animated YES, the picker is not yet dismissed so either use new API
[picker dismissViewControllerAnimated:YES completion:^{
[self dismissModalViewControllerAnimated:YES];
}];

The App is crashes because in iOS6 [self dismissModalViewControllerAnimated:YES];
is deprecated you replace it with [picker dismissViewControllerAnimated:YES completion:nil]; may solve you issue.

Related

freeradius daloradius authentication failure

i followed this tutorial to install freeradius and dalo radius for the raspberry pi:
http://www.binaryheartbeat.net/2013/12/raspberry-pi-based-freeradius-server.html
i tested the file authentication and it worked fine but after installing daloradius and switching to MySQL authnetications fail for unknown reasons
here is freeradius output that occurs when trying to authenticate a user:
rad_recv: Access-Request packet from host 192.168.1.1 port 32779, id=216, length=172
User-Name = "ccc"
State = 0xf9775519ff7f4c9188c14494359a170f
EAP-Message = 0x0208005b190017030100500d2898ca35aa9fa9e4febd8816c9e6deda71960fe5692b7c3d0499f2b5bba6b531483e373e14f8aff517aa081e214edc98e2c8bb22d16a961ecff4f498d20d152535b4d11ace1484b985bd2501ade77b
Service-Type = Framed-User
Framed-MTU = 1420
NAS-IP-Address = 192.168.1.1
Message-Authenticator = 0x49fc781b8a152fbec467b2c1f275a1a1
Tue Dec 29 18:38:47 2015 : Info: # Executing section authorize from file /etc/freeradius/sites-enabled/default
Tue Dec 29 18:38:47 2015 : Info: +group authorize {
Tue Dec 29 18:38:47 2015 : Info: ++[preprocess] = ok
Tue Dec 29 18:38:47 2015 : Info: ++[chap] = noop
Tue Dec 29 18:38:47 2015 : Info: ++[mschap] = noop
Tue Dec 29 18:38:47 2015 : Info: ++[digest] = noop
Tue Dec 29 18:38:47 2015 : Info: [suffix] No '#' in User-Name = "ccc", looking up realm NULL
Tue Dec 29 18:38:47 2015 : Info: [suffix] No such realm "NULL"
Tue Dec 29 18:38:47 2015 : Info: ++[suffix] = noop
Tue Dec 29 18:38:47 2015 : Info: [eap] EAP packet type response id 8 length 91
Tue Dec 29 18:38:47 2015 : Info: [eap] Continuing tunnel setup.
Tue Dec 29 18:38:47 2015 : Info: ++[eap] = ok
Tue Dec 29 18:38:47 2015 : Info: +} # group authorize = ok
Tue Dec 29 18:38:47 2015 : Info: Found Auth-Type = EAP
Tue Dec 29 18:38:47 2015 : Info: # Executing group from file /etc/freeradius/sites-enabled/default
Tue Dec 29 18:38:47 2015 : Info: +group authenticate {
Tue Dec 29 18:38:47 2015 : Info: [eap] Request found, released from the list
Tue Dec 29 18:38:47 2015 : Info: [eap] EAP/peap
Tue Dec 29 18:38:47 2015 : Info: [eap] processing type peap
Tue Dec 29 18:38:47 2015 : Info: [peap] processing EAP-TLS
Tue Dec 29 18:38:47 2015 : Info: [peap] eaptls_verify returned 7
Tue Dec 29 18:38:47 2015 : Info: [peap] Done initial handshake
Tue Dec 29 18:38:47 2015 : Info: [peap] eaptls_process returned 7
Tue Dec 29 18:38:47 2015 : Info: [peap] EAPTLS_OK
Tue Dec 29 18:38:47 2015 : Info: [peap] Session established. Decoding tunneled attributes.
Tue Dec 29 18:38:47 2015 : Info: [peap] Peap state phase2
Tue Dec 29 18:38:47 2015 : Info: [peap] EAP type mschapv2
Tue Dec 29 18:38:47 2015 : Info: [peap] Got tunneled request
EAP-Message = 0x0208003e1a0208003931461c2f1334a4b7bab38912e9d82dd97b000000000000000070fb7810a938a00d884f17dc01b62eaa7dde9fbb7ab2cf4200636363
server {
Tue Dec 29 18:38:47 2015 : Info: [peap] Setting User-Name to ccc
Sending tunneled request
EAP-Message = 0x0208003e1a0208003931461c2f1334a4b7bab38912e9d82dd97b000000000000000070fb7810a938a00d884f17dc01b62eaa7dde9fbb7ab2cf4200636363
FreeRADIUS-Proxied-To = 127.0.0.1
User-Name = "ccc"
State = 0x4bb6eef44bbef48a7072f4e023895561
server inner-tunnel {
Tue Dec 29 18:38:47 2015 : Info: # Executing section authorize from file /etc/freeradius/sites-enabled/inner-tunnel
Tue Dec 29 18:38:47 2015 : Info: +group authorize {
Tue Dec 29 18:38:47 2015 : Info: ++[chap] = noop
Tue Dec 29 18:38:47 2015 : Info: ++[mschap] = noop
Tue Dec 29 18:38:47 2015 : Info: [suffix] No '#' in User-Name = "ccc", looking up realm NULL
Tue Dec 29 18:38:47 2015 : Info: [suffix] No such realm "NULL"
Tue Dec 29 18:38:47 2015 : Info: ++[suffix] = noop
Tue Dec 29 18:38:47 2015 : Info: ++update control {
Tue Dec 29 18:38:47 2015 : Info: ++} # update control = noop
Tue Dec 29 18:38:47 2015 : Info: [eap] EAP packet type response id 8 length 62
Tue Dec 29 18:38:47 2015 : Info: [eap] No EAP Start, assuming it's an on-going EAP conversation
Tue Dec 29 18:38:47 2015 : Info: ++[eap] = updated
Tue Dec 29 18:38:47 2015 : Info: ++[files] = noop
Tue Dec 29 18:38:47 2015 : Info: ++[expiration] = noop
Tue Dec 29 18:38:47 2015 : Info: ++[logintime] = noop
Tue Dec 29 18:38:47 2015 : Info: ++[pap] = noop
Tue Dec 29 18:38:47 2015 : Info: +} # group authorize = updated
Tue Dec 29 18:38:47 2015 : Info: Found Auth-Type = EAP
Tue Dec 29 18:38:47 2015 : Info: # Executing group from file /etc/freeradius/sites-enabled/inner-tunnel
Tue Dec 29 18:38:47 2015 : Info: +group authenticate {
Tue Dec 29 18:38:47 2015 : Info: [eap] Request found, released from the list
Tue Dec 29 18:38:47 2015 : Info: [eap] EAP/mschapv2
Tue Dec 29 18:38:47 2015 : Info: [eap] processing type mschapv2
Tue Dec 29 18:38:47 2015 : Info: [mschapv2] # Executing group from file /etc/freeradius/sites-enabled/inner-tunnel
Tue Dec 29 18:38:47 2015 : Info: [mschapv2] +group MS-CHAP {
Tue Dec 29 18:38:47 2015 : Info: [mschap] No Cleartext-Password configured. Cannot create LM-Password.
Tue Dec 29 18:38:47 2015 : Info: [mschap] No Cleartext-Password configured. Cannot create NT-Password.
Tue Dec 29 18:38:47 2015 : Info: [mschap] Creating challenge hash with username: ccc
Tue Dec 29 18:38:47 2015 : Info: [mschap] Client is using MS-CHAPv2 for ccc, we need NT-Password
Tue Dec 29 18:38:47 2015 : Info: [mschap] FAILED: No NT/LM-Password. Cannot perform authentication.
Tue Dec 29 18:38:47 2015 : Info: [mschap] FAILED: MS-CHAP2-Response is incorrect
Tue Dec 29 18:38:47 2015 : Info: ++[mschap] = reject
Tue Dec 29 18:38:47 2015 : Info: +} # group MS-CHAP = reject
Tue Dec 29 18:38:47 2015 : Info: [eap] Freeing handler
Tue Dec 29 18:38:47 2015 : Info: ++[eap] = reject
Tue Dec 29 18:38:47 2015 : Info: +} # group authenticate = reject
Tue Dec 29 18:38:47 2015 : Info: Failed to authenticate the user.
Tue Dec 29 18:38:47 2015 : Info: Using Post-Auth-Type REJECT
Tue Dec 29 18:38:47 2015 : Info: # Executing group from file /etc/freeradius/sites-enabled/inner-tunnel
Tue Dec 29 18:38:47 2015 : Info: +group REJECT {
Tue Dec 29 18:38:47 2015 : Info: [attr_filter.access_reject] expand: %{User-Name} -> ccc
Tue Dec 29 18:38:47 2015 : Debug: attr_filter: Matched entry DEFAULT at line 11
Tue Dec 29 18:38:47 2015 : Info: ++[attr_filter.access_reject] = updated
Tue Dec 29 18:38:47 2015 : Info: +} # group REJECT = updated
} # server inner-tunnel
Tue Dec 29 18:38:47 2015 : Info: [peap] Got tunneled reply code 3
MS-CHAP-Error = "\010E=691 R=1"
EAP-Message = 0x04080004
Message-Authenticator = 0x00000000000000000000000000000000
Tue Dec 29 18:38:47 2015 : Info: [peap] Got tunneled reply RADIUS code 3
MS-CHAP-Error = "\010E=691 R=1"
EAP-Message = 0x04080004
Message-Authenticator = 0x00000000000000000000000000000000
Tue Dec 29 18:38:47 2015 : Info: [peap] Tunneled authentication was rejected.
Tue Dec 29 18:38:47 2015 : Info: [peap] FAILURE
Tue Dec 29 18:38:47 2015 : Info: ++[eap] = handled
Tue Dec 29 18:38:47 2015 : Info: +} # group authenticate = handled
Sending Access-Challenge of id 216 to 192.168.1.1 port 32779
EAP-Message = 0x0109002b190017030100205991bfd8f9e7f70794477d653c848e8b443626b3b935a5b3f049ac7af1534d3e
Message-Authenticator = 0x00000000000000000000000000000000
State = 0xf9775519fe7e4c9188c14494359a170f
Tue Dec 29 18:38:47 2015 : Info: Finished request 7.
Tue Dec 29 18:38:47 2015 : Debug: Going to the next request
Tue Dec 29 18:38:47 2015 : Debug: Waking up in 0.4 seconds.
rad_recv: Access-Request packet from host 192.168.1.1 port 32779, id=217, length=124
User-Name = "ccc"
State = 0xf9775519fe7e4c9188c14494359a170f
EAP-Message = 0x0209002b190017030100202a7f1a72de2970b689e44c005661d1e1e444854af7499ebeb23eabc7bfad7b64
Service-Type = Framed-User
Framed-MTU = 1420
NAS-IP-Address = 192.168.1.1
Message-Authenticator = 0xc9b0d8e268df2d8e4b484725c3efa189
Tue Dec 29 18:38:47 2015 : Info: # Executing section authorize from file /etc/freeradius/sites-enabled/default
Tue Dec 29 18:38:47 2015 : Info: +group authorize {
Tue Dec 29 18:38:47 2015 : Info: ++[preprocess] = ok
Tue Dec 29 18:38:47 2015 : Info: ++[chap] = noop
Tue Dec 29 18:38:47 2015 : Info: ++[mschap] = noop
Tue Dec 29 18:38:47 2015 : Info: ++[digest] = noop
Tue Dec 29 18:38:47 2015 : Info: [suffix] No '#' in User-Name = "ccc", looking up realm NULL
Tue Dec 29 18:38:47 2015 : Info: [suffix] No such realm "NULL"
Tue Dec 29 18:38:47 2015 : Info: ++[suffix] = noop
Tue Dec 29 18:38:47 2015 : Info: [eap] EAP packet type response id 9 length 43
Tue Dec 29 18:38:47 2015 : Info: [eap] Continuing tunnel setup.
Tue Dec 29 18:38:47 2015 : Info: ++[eap] = ok
Tue Dec 29 18:38:47 2015 : Info: +} # group authorize = ok
Tue Dec 29 18:38:47 2015 : Info: Found Auth-Type = EAP
Tue Dec 29 18:38:47 2015 : Info: # Executing group from file /etc/freeradius/sites-enabled/default
Tue Dec 29 18:38:47 2015 : Info: +group authenticate {
Tue Dec 29 18:38:47 2015 : Info: [eap] Request found, released from the list
Tue Dec 29 18:38:47 2015 : Info: [eap] EAP/peap
Tue Dec 29 18:38:47 2015 : Info: [eap] processing type peap
Tue Dec 29 18:38:47 2015 : Info: [peap] processing EAP-TLS
Tue Dec 29 18:38:47 2015 : Info: [peap] eaptls_verify returned 7
Tue Dec 29 18:38:47 2015 : Info: [peap] Done initial handshake
Tue Dec 29 18:38:47 2015 : Info: [peap] eaptls_process returned 7
Tue Dec 29 18:38:47 2015 : Info: [peap] EAPTLS_OK
Tue Dec 29 18:38:47 2015 : Info: [peap] Session established. Decoding tunneled attributes.
Tue Dec 29 18:38:47 2015 : Info: [peap] Peap state send tlv failure
Tue Dec 29 18:38:47 2015 : Info: [peap] Received EAP-TLV response.
Tue Dec 29 18:38:47 2015 : Info: [peap] The users session was previously rejected: returning reject (again.)
Tue Dec 29 18:38:47 2015 : Info: [peap] *** This means you need to read the PREVIOUS messages in the debug output
Tue Dec 29 18:38:47 2015 : Info: [peap] *** to find out the reason why the user was rejected.
Tue Dec 29 18:38:47 2015 : Info: [peap] *** Look for "reject" or "fail". Those earlier messages will tell you.
Tue Dec 29 18:38:47 2015 : Info: [peap] *** what went wrong, and how to fix the problem.
Tue Dec 29 18:38:47 2015 : Info: [eap] Handler failed in EAP/peap
Tue Dec 29 18:38:47 2015 : Info: [eap] Failed in EAP select
Tue Dec 29 18:38:47 2015 : Info: ++[eap] = invalid
Tue Dec 29 18:38:47 2015 : Info: +} # group authenticate = invalid
Tue Dec 29 18:38:47 2015 : Info: Failed to authenticate the user.
Tue Dec 29 18:38:47 2015 : Info: Using Post-Auth-Type REJECT
Tue Dec 29 18:38:47 2015 : Info: # Executing group from file /etc/freeradius/sites-enabled/default
Tue Dec 29 18:38:47 2015 : Info: +group REJECT {
Tue Dec 29 18:38:47 2015 : Info: [sql] expand: %{User-Name} -> ccc
Tue Dec 29 18:38:47 2015 : Info: [sql] sql_set_user escaped user --> 'ccc'
Tue Dec 29 18:38:47 2015 : Info: [sql] expand: %{User-Password} ->
Tue Dec 29 18:38:47 2015 : Info: [sql] ... expanding second conditional
Tue Dec 29 18:38:47 2015 : Info: [sql] expand: %{Chap-Password} ->
Tue Dec 29 18:38:47 2015 : Info: [sql] expand: INSERT INTO radpostauth (username, pass, reply, authdate) VALUES ( '%{User-Name}', '%{%{User-Password}:-%{Chap-Password}}', '%{reply:Packet-Type}', '%S') -> INSERT INTO radpostauth (username, pass, reply, authdate) VALUES ( 'ccc', '', 'Access-Reject', '2015-12-29 18:38:47')
Tue Dec 29 18:38:47 2015 : Debug: rlm_sql (sql) in sql_postauth: query is INSERT INTO radpostauth (username, pass, reply, authdate) VALUES ( 'ccc', '', 'Access-Reject', '2015-12-29 18:38:47')
Tue Dec 29 18:38:47 2015 : Debug: rlm_sql (sql): Reserving sql socket id: 29
Tue Dec 29 18:38:47 2015 : Debug: rlm_sql (sql): Released sql socket id: 29
Tue Dec 29 18:38:47 2015 : Info: ++[sql] = ok
Tue Dec 29 18:38:47 2015 : Info: [attr_filter.access_reject] expand: %{User-Name} -> ccc
Tue Dec 29 18:38:47 2015 : Debug: attr_filter: Matched entry DEFAULT at line 11
Tue Dec 29 18:38:47 2015 : Info: ++[attr_filter.access_reject] = updated
Tue Dec 29 18:38:47 2015 : Info: +} # group REJECT = updated
Tue Dec 29 18:38:47 2015 : Info: Delaying reject of request 8 for 1 seconds
Tue Dec 29 18:38:47 2015 : Debug: Going to the next request
Tue Dec 29 18:38:47 2015 : Debug: Waking up in 0.1 seconds.
Tue Dec 29 18:38:47 2015 : Info: Cleaning up request 0 ID 209 with timestamp +11
Tue Dec 29 18:38:47 2015 : Debug: Waking up in 0.3 seconds.
Tue Dec 29 18:38:47 2015 : Info: Cleaning up request 1 ID 210 with timestamp +11
Tue Dec 29 18:38:47 2015 : Debug: Waking up in 0.3 seconds.
Tue Dec 29 18:38:48 2015 : Info: Cleaning up request 2 ID 211 with timestamp +12
Tue Dec 29 18:38:48 2015 : Debug: Waking up in 0.1 seconds.
Tue Dec 29 18:38:48 2015 : Info: Sending delayed reject for request 8
Sending Access-Reject of id 217 to 192.168.1.1 port 32779
EAP-Message = 0x04090004
Message-Authenticator = 0x00000000000000000000000000000000
Found the solution,
the problem was that i didn't configure the /etc/raddb/sites-available/inner-tunnel file to use sql

App self unInstall iOS iphone

My app was auto Uninstall last night and I spend all day to found how it happened, but found nothing.
Here is the Console log:
Nov 5 20:54:48 CommCenter[62] <Notice>: MessageCenterModel is telling PDP context -1 to go active.
Nov 5 20:54:48 lockdownd[29] <Notice>: 2ff83000 __copy_itunes_value_block_invoke_0: com.apple.mobile.iTunes.store/DSPersonID -> 1110853068
Nov 5 20:54:48 lockdownd[29] <Notice>: 2ff83000 __copy_itunes_value_block_invoke_0: com.apple.mobile.iTunes.store/DSPersonID -> 1110853068
Nov 5 20:54:48 lockdownd[29] <Notice>: 2ff83000 __copy_itunes_value_block_invoke_0: com.apple.mobile.iTunes.store/DSPersonID -> 1110853068
Nov 5 20:54:48 lockdownd[29] <Notice>: 2ff83000 __copy_itunes_value_block_invoke_0: com.apple.mobile.iTunes.store/DSPersonID -> 1110853068
Nov 5 20:54:48 lockdownd[29] <Notice>: 2ff83000 __copy_itunes_value_block_invoke_0: com.apple.mobile.iTunes.store/DSPersonID -> 1110853068
Nov 5 20:54:49 lockdownd[29] <Notice>: 2ff83000 __copy_itunes_value_block_invoke_0: com.apple.mobile.iTunes.store/downloaded-apps -> <CFArray 0x1f533830 [0x3d1f9100]>{type = immutable, count = 9, values = (
0 : <CFString 0x1f54d7e0 [0x3d1f9100]>{contents = "com.magikid.numbersflipbook"}
1 : <CFString 0x1f54d700 [0x3d1f9100]>{contents = "com.angellecho.magikidstage"}
2 : <CFString 0x1f54c1c0 [0x3d1f9100]>{contents = "net.delusionstudio.cocomongslabfree"}
3 : <CFString 0x1f54cdf0 [0x3d1f9100]>{contents = "com.magikid.MagKidTail"}
4 : <CFString 0x1f54b5d0 [0x3d1f9100]>{contents = "com.angellecho.magikid.train"}
5 : <CFString 0x1f5335b0 [0x3d1f9100]>{contents = "com.subsplashstudio34.Church-of-the-Foothills"}
6 : <CFString 0x1f54d910 [0x3d1f9100]>{contents = "com.bingoapp.yzjj.MagicSong"}
7 : <CFString 0x1f54d0c0 [0x3d1f9100]>{contents = "com.trisw.Pinocchio"}
8 : <CFString 0x1f54c3b0 [0x3d1f9100]>{contents = "com.scholarandsaint.paddywhacks"}
)}
Nov 5 20:54:52 lockdownd[29] <Notice>: 2ff83000 __copy_itunes_value_block_invoke_0: com.apple.mobile.iTunes.store/PurchaseTypes -> (null)
Nov 5 20:54:52 lockdownd[29] <Notice>: 2fe93000 set_itunes_value: set com.apple.mobiffle.iTunes.store/LibraryCUID to b4e09adbe3c01c22e1e68d4b6bb09ae5 succeeded
Nov 5 20:55:01 installd[31] <Error>: 0x2ff98000 handle_uninstall: Uninstall requested by atc
Nov 5 20:55:02 installd[31] <Error>: 0x2ff98000 MobileInstallationUninstall_Server: Uninstalling com.**.**
Nov 5 20:55:02 SpringBoard[69] <Warning>: Killing com.**.** for termination assertion
Nov 5 20:55:02 lsd[698] <Warning>: LaunchServices: Could not store lsd-identifiers file
Nov 5 20:55:02 lsd[698] <Warning>: LaunchServices: Could not store lsd-identifiers file
Nov 5 20:55:02 installd[31] <Error>: 0x20e000 __block_global_6: LS failed to unregister application file://localhost/private/var/mobile/Applications/8D93D99D-7D7F-41CE-9093-3C24E1EA3F1C/**.app/ (com.**.**)
Nov 5 20:55:02 SpringBoard[69] <Warning>: Reloading and rendering all application icons.
Nov 5 20:55:02 com.apple.launchd[1] <Notice>: (UIKitApplication:com.**.**[0xf31a]) Exited: Killed: 9
Nov 5 20:55:02 backboardd[52] <Warning>: Application 'UIKitApplication:com.**.**[0xf31a]' exited abnormally with signal 9: Killed: 9
Nov 5 20:55:03 SpringBoard[69] <Warning>: An application that SpringBoard is not tracking with bundle identifier com.**.** just exited.
Nov 5 20:55:03 SpringBoard[69] <Warning>: No transaction in -[SBWorkspace workspace:applicationWillBecomeReceiver:fromApplication:]
Nov 5 20:55:03 SpringBoard[69] <Warning>: No transaction in -[SBWorkspace workspace:applicationDidBecomeReceiver:fromApplication:]
Nov 5 20:55:03 installd[31] <Error>: 0x2ff98000 __MobileInstallationClearUninstalled_Server_block_invoke_0: Removing id com.angellecho.iphone.drluke from uninstalled list
You can see Uninstall requested by atc. I wonder what atc is.
As console log, you can see the system kill my app when it running. When I am back to the desktop, the icon disappeared!
My iPhone is not jailBreak. My app is in compiled in Debugger configuration (according to XCode).

iPhone app crashes randomly on device while connecting to remote server?

i have an app which post and get data using webservice it's working fine but while testing the app rigorously crashes with message Application Exited abnormally with signal 9(Killed) .
Mon Jul 16 21:07:55 unknown MyApp[167] <Warning>: NVVC Dealloc
Mon Jul 16 21:08:23 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.company.MyApp[0xe271]) Bug: launchd_core_logic.c:2688 (24132):10
Mon Jul 16 21:08:23 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.company.MyApp[0xe271]) Working around 5020256. Assuming the job crashed.
Mon Jul 16 21:08:23 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:com.company.MyApp[0xe271]) Job appears to have crashed: Segmentation
fault
Mon Jul 16 21:08:23 unknown SpringBoard[29] <Warning>: Application 'MyApp' exited abnormally with signal 11: Segmentation fault
Mon Jul 16 21:09:04 unknown lockdownd[20] <Error>: (0x403000) handle_connection: Could not receive USB message #7 from Xcode. Killing connection
Mon Jul 16 22:00:39 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.apple.mobilemail[0x55fb]) Exited: Killed
Mon Jul 16 22:00:39 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.apple.mobilephone[0xa13c]) Exited: Killed
Mon Jul 16 22:00:39 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.MyApp.app[0x137]) Exited: Killed
Mon Jul 16 22:00:39 unknown com.apple.launchd[1] <Notice>: (com.apple.accessoryd) Exited: Killed
Mon Jul 16 22:00:41 unknown SpringBoard[29] <Warning>: Application 'Mail' exited abnormally with signal 9: Killed
Mon Jul 16 22:00:41 unknown SpringBoard[29] <Warning>: Memory level is not normal (15%). Delaying auto-relaunch of 'Mail' for 30 seconds. Mon Jul 16 22:00:41 unknown SpringBoard[29] <Warning>: Application 'app' exited abnormally with signal 9: Killed
Mon Jul 16 22:00:42 unknown SpringBoard[29] <Warning>: Application 'Phone' exited abnormally with signal 9: Killed
i googled around but i could not found any solution or reason for killing app.please Help me to resolve the issue.
Edit#2
Here i am adding some code where i am getting crash in my application.
#try {
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
NSUserDefaults *defaults2 = [NSUserDefaults standardUserDefaults];
NSString *string = [NSString stringWithFormat:URL];
NSURL *url = [NSURL URLWithString:string];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL: url];
// NSURLRequest *request =[NSURLRequest requestWithURL:[NSURL URLWithString:synStr]];
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
[connection start];
[connection release];
if(label != nil){
progressView = [[ProgressView showHUDAddedTo:self.tabBarController.view animated:YES]retain];
progressView.labelText = label;
}
[request release];
}
#catch (NSException * e) {
}
You're using NSURLConnection incorrectly. If you look here you can see that you are starting an asynchronous connection. It looks like you are releasing the connection object before it has finished, which is causing the segmentation fault.

Application Crashed - Wired Crash

What does this error mean?
Nov 8 17:57:10 unknown configd[25] <Notice>: jetsam: kernel memory event (91), free: 670, active: 2840, inactive: 2253, purgeable: 0, wired: 15143
Nov 8 17:57:11 unknown SpringBoard[92] <Warning>: Received memory warning. Level=2
Nov 8 17:57:11 unknown MobileMail[6432] <Warning>: Received memory warning. Level=2
Nov 8 17:57:11 unknown configd[25] <Notice>: jetsam: kernel termination snapshot being created
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.apple.mobileipod[0xe0a1]) Exited: Killed: 9
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.apple.mobilemail[0xbebe]) Exited: Killed: 9
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Bug: launchd_core_logic.c:3795 (24506):0
Nov 8 17:57:11 unknown DTMobileIS[6377] <Warning>: _memoryNotification : <NSThread: 0x1c5361d0>{name = (null), num = 1}
Nov 8 17:57:11 unknown com.apple.debugserver-50[6480] <Warning>: 1 [1950/1503]: error: ::read ( 4, 0x2ff669f0, 1024 ) => -1 err = Bad file descriptor (0x00000009)
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Bug: launchd_core_logic.c:3794 (24506):3
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Bug: launchd_core_logic.c:3202 (24506):10
Nov 8 17:57:11 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Working around 5020256. Assuming the job crashed.
Nov 8 17:57:11 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:paradigm.PaymentSystemiPad[0x6c80]) Job appears to have crashed: Segmentation fault: 11
Nov 8 17:57:11 unknown SpringBoard[92] <Warning>: Application 'Mail' exited abnormally with signal 9: Killed: 9
Nov 8 17:57:12 unknown DTMobileIS[6377] <Warning>: _memoryNotification : {
OSMemoryNotificationLevel = 0;
timestamp = "2011-11-08 12:27:11 +0000";
}
Nov 8 17:57:12 unknown DTMobileIS[6377] <Warning>: _memoryNotification : <NSThread: 0x1c5361d0>{name = (null), num = 1}
Nov 8 17:57:12 unknown DTMobileIS[6377] <Warning>: _memoryNotification : {
OSMemoryNotificationLevel = 0;
timestamp = "2011-11-08 12:27:12 +0000";
}
Nov 8 17:57:12 unknown SpringBoard[92] <Warning>: Application 'PaymentSystemiPad' exited abnormally with signal 11: Segmentation fault: 11
Nov 8 17:57:12 unknown SpringBoard[92] <Warning>: Application 'iPod' exited abnormally with signal 9: Killed: 9
Nov 8 17:57:12 unknown kernel[0] <Debug>: launchd[6486] Builtin profile: MobileMail (sandbox)
Nov 8 17:57:13 unknown ReportCrash[6485] <Error>: libMobileGestalt loadBasebandMobileEquipmentInfo: CommCenter error: 1:45
Nov 8 17:57:13 unknown ReportCrash[6485] <Error>: libMobileGestalt copyInternationalMobileEquipmentIdentity: Could not get mobile equipment info dictionary
Nov 8 17:57:13 unknown ReportCrash[6485] <Error>: Saved crashreport to /Library/Logs/CrashReporter/LowMemory-2011-11-08-175713.plist using uid: 0 gid: 0, synthetic_euid: 0 egid: 0
Nov 8 17:59:12 unknown SpringBoard[92] <Notice>: MultitouchHID(1f55bf50) uilock state: 0 -> 1
This mean that you have allocated a lot of memory and Received memory warning. I assume you have memory leaks or load many images/resources into memory. Try to research your code and find places where you load resources.

Device Console Errors when Installing or Running App (Debug or Release Mode)

I've noticed for a while that the iPhone app I'm developing takes a very long time to launch on a device, even though the app doesn't do much on startup (just basically shows a UIView!).
I've just thought to check the device console in the Xcode Organiser and I'm seeing lots and lots of errors when launching the app from Xcode, or from just running the app on the device without starting it from Xcode. It's occurring on both debug and release modes.
I've done a search on Google for the time out errors and it brings up 0 results, which is worrying. I have an NSLog() in the applications init() method so you can see how long it takes just to get there.
Here's the console output when I launch it:
Tue Nov 24 13:53:19 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:19 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:20 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:20 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:20 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:20 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:20 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:20 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
...Shortened!
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:22 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:23 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:23 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:23 unknown mobile_installationd[170] <Error>: 00808a00 install_embedded_profile: Skipping the installation of the embedded profile
Tue Nov 24 13:53:23 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:23 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:23 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:24 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:29 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:29 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:29 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:30 unknown SpringBoard[25] <Warning>: Reloading and rendering all application icons.
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
...Shortened!
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:31 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:32 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:33 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: nopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:34 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
...Shortened!
Tue Nov 24 13:53:36 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:36 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:36 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:36 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:36 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:36 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:36 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:37 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:37 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:37 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:37 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:38 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:38 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:38 unknown com.apple.debugserver-43[181] <Warning>: debugserver-43 for armv6 Copyright (c) 2007-2009 Apple, Inc. All Rights Reserved.
Tue Nov 24 13:53:38 unknown com.apple.debugserver-43[181] <Warning>: Connecting to com.apple.debugserver service...
Tue Nov 24 13:53:39 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:39 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:40 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:com.mycompany.MyApplicationName[0x3761]) Spawned and waiting for the debugger to attach before continuing...
Tue Nov 24 13:53:40 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:40 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:40 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:40 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:41 unknown kernel[0] <Debug>: launchd[182] Builtin profile: container (seatbelt)
Tue Nov 24 13:53:41 unknown com.apple.debugserver-43[181] <Warning>: Got a connection, waiting for debugger instructions for task "(null)".
Tue Nov 24 13:53:41 unknown kernel[0] <Debug>: launchd[182] Container: /private/var/mobile/Applications/2CC5E95A-7DFD-412F-B80C-3256698C7940 (seatbelt)
Tue Nov 24 13:53:42 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:42 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:42 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:42 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:43 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
...Shortened!
Tue Nov 24 13:53:52 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:53 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
...Shortened!
Tue Nov 24 13:53:54 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:54 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:54 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:54 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:54 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:54 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown MyApplicationName[182] <Warning>: App Init Method
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:55 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:57 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:57 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:53:57 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
...Shortened!
Tue Nov 24 13:54:03 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:54:03 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:54:03 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:54:03 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:54:03 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:54:04 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
Tue Nov 24 13:54:13 unknown kernel[0] <Debug>: AppleSynopsysOTGDevice::endpointInIntOccurred : TIME OUT condition detected for EP 85
As you can see it takes around a minute before the app launches and can be used.
This happens even when I'm not running it through XCode and it is in release mode.
I'm really struggling to find out what it is because it's causing the application's load time to be very long indeed. It also infrequently quits after it says it too too long to load.
To add to this, when I press the home button and exit the app, I get this in the device console:
Tue Nov 24 13:58:56 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.mycompany.MyApplicationName[0x3761]) Bug: launchd_core_logic.c:2649 (23909):10
Tue Nov 24 13:58:56 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.mycompany.MyApplicationName[0x3761]) Working around 5020256. Assuming the job crashed.
Tue Nov 24 13:58:56 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:com.mycompany.MyApplicationName[0x3761]) Job appears to have crashed: Segmentation fault
Tue Nov 24 13:58:56 unknown com.apple.debugserver-43[181] <Warning>: 1 [00b5/1603]: error: ::read ( 7, 0x28091c, 1024 ) => -1 err = Bad file descriptor (0x00000009)
Tue Nov 24 13:58:56 unknown SpringBoard[25] <Warning>: Application 'MyApplicationName' exited abnormally with signal 11: Segmentation fault
I'd be really grateful if someone could point me in the right direction or explain what's going on because this is really confusing me!
Many thanks,
Michael
I'm pretty sure AppleSynopsysOTGDevice handles the USB connection. This suggest the error lays somewhere in the USB connection/configuration/hardware. The console errors suggest that the app/OS is polling the USB repeatedly but not getting an answer.
If you're running with the iPhone plugged in, I would start by disconnecting see if that resolves the problem. Disconnecting any accessory devices you might have plugged into the iphone.