Coder Social home page Coder Social logo

ERROR: Assertion Failed about ios-deploy HOT 57 CLOSED

camdagr8 avatar camdagr8 commented on May 23, 2024
ERROR: Assertion Failed

from ios-deploy.

Comments (57)

stigor avatar stigor commented on May 23, 2024 1

I confirm the senthilmanick's last comment.
Killing old instance lldb helped me.

For killing lldb for specified device I use command:
ps aux | grep -ie $device->{id} | grep -ie lldb | awk '{print $2}' | xargs kill -9

from ios-deploy.

OrangeDog avatar OrangeDog commented on May 23, 2024

I'm hitting the same assert with ios-deploy 1.0.4.
It's now on line 560.

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Try 1.0.5/1.0.6

from ios-deploy.

rvanbaalen avatar rvanbaalen commented on May 23, 2024

@shazron Still experiencing the mentioned issue with ios-deploy version 1.0.6 on an up-to-date OSX Mavericks installation using Xcode 5.1 (iOS 7.1)

from ios-deploy.

iKristjan avatar iKristjan commented on May 23, 2024

I am experiencing the same issue with the same configuration as @rvanbaalen.
Is there any fix yet?

from ios-deploy.

OrangeDog avatar OrangeDog commented on May 23, 2024

It doesn't happen every time for me, but seemingly at random.

from ios-deploy.

okonon avatar okonon commented on May 23, 2024

I am experiencing same issue running node 10.0.28, cordova 3.5.0, iOS 7.1, mac osx 10.9.
if i deploy the app using Xcode it is deploying fine, but if I use cordova run iOS i get this error:

** BUILD SUCCEEDED **

[....] Waiting for iOS device to be connected
------ Install phase ------
[ 0%] Found device (4a5533d1d9de7b77cfce66600d9bc4de20bef732), beginning install
Assertion failed: (AMDeviceStartService(device, CFSTR("com.apple.afc"), &afcFd, NULL) == 0), function handle_device, file ios-deploy.c, line 913.
/Users/user/Dev/my-app/platforms/ios/cordova/run: line 138: 57458 Abort trap: 6 ios-deploy -d -b "$DEVICE_APP_PATH"

from ios-deploy.

lukaszb avatar lukaszb commented on May 23, 2024

same here, using [email protected]

UPDATE: Started working again after downgrading to [email protected] (well, I actually uninstalled cordova and ionic first, and have done several other things so cannot be 100% sure that's related with cordova version but I suppose so)
UPDATE2: Nope, my bad. Issue still persist. I must had deployed through Xcode

from ios-deploy.

wrt avatar wrt commented on May 23, 2024

Same happened to me earlier. Traced it through the ios-deploy code and found it was failing on Pairing Assertion. The device was connected but not paired correctly. Disconnected the device and reconnected it -- the assertion succeeded and the deployment went through correctly.

from ios-deploy.

rotev avatar rotev commented on May 23, 2024

It happens to me as well:

Assertion failed: (AMDeviceStartService(device, CFSTR("com.apple.debugserver"), &gdbfd, NULL) == 0), function start_remote_debug_server, file ios-deploy.c, line 650.
/Users/.../app/platforms/ios/cordova/run: line 138:   944 Abort trap: 6           ios-deploy -d -b "$DEVICE_APP_PATH"

In the mean time, is it possible to debug through Xcode?

from ios-deploy.

auser avatar auser commented on May 23, 2024

I'm hitting it as well...

[....] Waiting for iOS device to be connected
------ Install phase ------
[  0%] Found device (cfc0c26a4972e019be96fa5d5b754ffd88f85428), beginning install
Assertion failed: (AMDeviceStartService(device, CFSTR("com.apple.afc"), &afcFd, NULL) == 0), function handle_device, file ios-deploy.c, line 913.
/Users/auser/Development/farmforeman/ionic-foreman/foreman/platforms/ios/cordova/run: line 138: 91075 Abort trap: 6           ios-deploy -d -b "$DEVICE_APP_PATH"

Any update on the issue?

from ios-deploy.

alexmipego avatar alexmipego commented on May 23, 2024

Hi,

Any update on this issue?

I've the latest phonegap-cli and it was working fine last week. I don't think it's the issue here but this problem started happening after I added the "local" to "phonegap local build ios".

I tried to update the phonegap-cli and dependencies and even did a restart. Sometimes it runs well then it stops working. I believe that if you disconnect the device and plug it in as you're starting the build forces some sort of pairing that makes it work if the timing is correct. But until this week I never had to reconnect the device and now it's the only way to make it work (although still 60% chance).

edit
I've the same output as @auser or @softBarbarian

from ios-deploy.

antonysastre avatar antonysastre commented on May 23, 2024

Bump.

------ Install phase ------
[  0%] Found device (f9a00b37023b1657314b715983d3289e416593c8), beginning install
Assertion failed: (AMDeviceStartService(device, CFSTR("com.apple.afc"), &afcFd, NULL) == 0), function handle_device, file ios-deploy.c, line 913.
/Users/antonysastre/Projects/ionic/shopin/platforms/ios/cordova/run: line 138:  1516 Abort trap: 6           ios-deploy -d -b "$DEVICE_APP_PATH"

** Edit **

Ok, so for me I just needed to unplug and replug the iOS device and it worked. What confuses me is that the script says ”Found device” with the device ID.

from ios-deploy.

alexmipego avatar alexmipego commented on May 23, 2024

Ok, I'm super stressed out about this bug, so stressed out I checked out ios-deploy's source code and started to debug it. While I haven't found a reason or (software) fix for it yet, I've made an important discovery I wish to validate with other people with the same issue.

Anyone with the issue please test one step at a time:

  • Turn off iTunes Wifi Sync for the device
  • Turn off Bluetooth & Wifi on the device

Also note that the effect isn't immediate, in my case I hadn't Wifi Sync on to begin with, but each time after I turned Wifi off it would fail on attempts within 30-60 seconds but then work flawlessly. So turn wifi off, wait 30s then test the deploy again.

I know this isn't a good permanent solution but it might indicate the source of the problem. I'll post any new findings I make, if there are some!

edit
for the moment, after some tests it simply stopped not working and I can't reproduce the problem anymore. Lets see if it happens again later.

edit 2
ok, the problem is back after i switched devices. the second device did have Wifi Sync enabled. After some debugging I found out the error codes to be -402653057 or 0xE800007F, base 10 and 16 respectively. Although a direct search didn't help I later found the error constant to be kAMDNoWifiSyncSupportError which confirms the issues do have something to do with Wifi Sync.

from ios-deploy.

alexmipego avatar alexmipego commented on May 23, 2024

Just did a pull request to help diagnose this problem. First, some new information.

In my case I found out that while I had an iPhone on an USB docks, after a while my iPad would ping the mac and get detected by ios-deploy. Until I realized the device uuids were different I thought OSX was "upgrading" the connection although the iPhone's Wifi was off.

Thing is, I've both devices with Wifi Sync disabled on iTunes so I'm still not sure why this is happening.

My pull request helps this issue by improving the current log message that only shows the device's ID. It now shows the name, model, id and tells how it's connected (USB or WIFI).

In my current tests I've changed the code to make it work over WIFI and everything works (the deploy) but the debugger won't launch. This code is not included in this pull request, so if your device is shown as connecting through WIFI it shouldn't even deploy correctly and will not show the device's name but tells you it's a WIFI connection.

from ios-deploy.

alexmipego avatar alexmipego commented on May 23, 2024

I've done all I could for this issue and it's no longer a problem for me. The pull request #48 should help everyone diagnose their problem and adds a couple nice features like Wifi deployment. Perhaps most importantly, it removes the puzzling "assert" log.

Right now, it's working for me, if anyone can test (specially with devices other than the iPad Mini and iPhone 5S) it would be nice to know if everything still works.

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

PR #48 merged in and lightly tested. The changes are in master, so if any of you want to test it out. Thanks @alexmipego! Please report if it fixes your problem, and the issue can be closed.

from ios-deploy.

cuchi12 avatar cuchi12 commented on May 23, 2024

I'm having the same issue, I'm using cordova version 3.5.0-0.2.4 on a mac with OSX 10.9.4, what else could I do? Last week I was able to run my application on my iphone with iOS 7.1.2, the only thing I changed was adding a google analytics plugin but I already removed it and still not working.

Another thing is that every time I add a plugin I get some weird errors and I have to remove the ios platform and add it again.

from ios-deploy.

alexmipego avatar alexmipego commented on May 23, 2024

I'm not sure about the structure and "link" between projects. Try updating ios-deploy which should be a cordova dependency. Checking the source code of package.json it should update to version 1.1.0 which appears to include the patch this issue mentions.

"npm -g outdated ios-deploy" should tell you if an update is available.

from ios-deploy.

psimondk avatar psimondk commented on May 23, 2024

That solved the issue for me ... thanks a lot!

(Now if anyone would care to fix PG build someday ... ;)

from ios-deploy.

alexmipego avatar alexmipego commented on May 23, 2024

What do you mean by PG build? (link...?)

from ios-deploy.

pk1u avatar pk1u commented on May 23, 2024

I'm seeing the below "Assertion failed" and "Abort trap" errors; ios-deploy is used via Ionic Framework's LiveReload feature.

I'm on iOS 7, Xcode V5.1, Cordova V3.5.0-0.2.7, ios-deploy V1.1.0, and Ionic CLI V1.2.4.

bash$ ionic run ios -l -c -s

Setup Live Reload
Running dev server: http://192.168.2.1:8100

[...] 

[ 46%] Copying /Users/yea/myapp/platforms/ios/build/device/myapp.app/www/plugins/org.apache.cordova.file/www/FileSystem.js to device

[...]

Assertion failed: (AMDeviceStartService(device, CFSTR("com.apple.debugserver"), &gdbfd, NULL) == 0), function start_remote_debug_server, file ios-deploy.c, line 792.

[...]

------ Debug phase ------
Starting debug of (null) connected through USB...
[  0%] Looking up developer disk image
[ 90%] Mounting developer disk image
[ 95%] Developer disk image already mounted

/Users/yea/myapp/platforms/ios/cordova/run: line 138: 72023 Abort trap: 6           ios-deploy -d -b "$DEVICE_APP_PATH"

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

update and try version 1.2.0

from ios-deploy.

stigor avatar stigor commented on May 23, 2024

I have the same issue.
Environment: XCode 6.0.1, iOS 6.1.6, ios-deploy 1.2.0

Error message:
Assertion failed: (AMDeviceStartService(device, CFSTR("com.apple.debugserver"), &gdbfd, NULL) == 0), function start_remote_debug_server, file ios-deploy.c, line 792.
Abort trap: 6

Reproduced only on iOS 6.x, on iOS7.x and iOS8.x is all ok.

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Thanks stigor - we may have come up to the limitation that the interfaces that came with Xcode 6 may not support iOS 6. The IDE itself does not even come with support for any iOS 6 simulators, for example. Just a hunch.

from ios-deploy.

drastick avatar drastick commented on May 23, 2024

I'm getting:

[ 0%] Looking up developer disk image
[ !! ] Unable to mount developer disk image. (e8000033)

XCode 6.1
iOS 8.1
ios-deploy 1.2.0

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Thanks @drastick - need more info: https://github.com/phonegap/ios-deploy/blob/master/CONTRIBUTING.md

from ios-deploy.

drastick avatar drastick commented on May 23, 2024

sw_vers: 10.9.5

ios-deploy: 1.2.0

Xcode: 6.1 Build Version 6A1042b

xcode-select: /Applications/Xcode.app/Contents/Developer

gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.54) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix

lldb --version
lldb-320.4.145

from ios-deploy.

senthilmanick avatar senthilmanick commented on May 23, 2024

Hitting the same issue with a slight difference

[ 0%] Looking up developer disk image
[ 95%] Developer disk image mounted successfully
Assertion failed: (AMDeviceStartService(device, CFSTR("com.apple.debugserver"), &gdbfd, NULL) == 0), function start_remote_debug_server, file ios-deploy.c, line 828.
Abort trap: 6


sw_vers
ProductName: Mac OS X
ProductVersion: 10.9.5
BuildVersion: 13F34

./ios-deploy -V
1.2.0

xcodebuild -version
Xcode 6.0.1
Build version 6A317

xcode-select --print-path
/Applications/Xcode.app/Contents/Developer

gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.51) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix

lldb --version
lldb-320.4.124.10

iOS: 8.0.2

from ios-deploy.

senthilmanick avatar senthilmanick commented on May 23, 2024

I noticed everytime the service start was asserting was when lldb from the previous session did not quit. doing killall lldb before ios-deploy seem to fix the issue.

Others who have seen the issue, can you confirm that it is indeed the problem.

Also when the device is locked, lldb seem to hang. This is fixed in my fork. Will ask for pull request.

from ios-deploy.

clecodes avatar clecodes commented on May 23, 2024

@stigor on Mac 10.10, your ps aux ... command didn't work. I found pkill lldb did the trick of killing all old instances of lldb.

So, this issue seems to be related to the fact there there seems to be no built in mechanism to shut down the lldb instance when one breaks out of the grunt livereload process.

from ios-deploy.

OrangeDog avatar OrangeDog commented on May 23, 2024

Well mine started working, but never exited due to #75.
I tried a pkill lldb to work around that, but now get this assertion on every attempt.

Assertion failed: (AMDeviceValidatePairing(device) == 0), function handle_device, file ios-deploy.c, line 1269.

from ios-deploy.

senthilmanick avatar senthilmanick commented on May 23, 2024

Could you try v1.3.0 of senthilmanick/ios-deploy. Please let me know

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Version 1.3.0 has been published with lots of bug fixes (thanks @senthilmanick). Try it out.

from ios-deploy.

okonon avatar okonon commented on May 23, 2024

After an update to 1.3.0 i constantly get ios-deploy quit unexpectedly error!
Please help.

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Not enough information for repro. Kill all lldb processes? Crash log?

from ios-deploy.

okonon avatar okonon commented on May 23, 2024

Sorry about that.
Here is the error log:
Process: ios-deploy [3755]
Path: /usr/local/lib/node_modules/ios-deploy/ios-deploy
Identifier: ios-deploy
Version: 0
Code Type: X86-64 (Native)
Parent Process: bash []
Responsible: Terminal []
User ID:

Date/Time: 2014-11-14 21:49:55.888 -0500
OS Version: Mac OS X 10.10.1 (14B23)
Report Version: 11
Anonymous UUID:

Sleep/Wake UUID:

Time Awake Since Boot: 23000 seconds
Time Since Wake: 8300 seconds

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000

VM Regions Near 0:
-->
__TEXT 0000000106a2b000-0000000106a36000 [ 44K] r-x/rwx SM=COW /usr/local/lib/node_modules/ios-deploy/ios-deploy

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 com.apple.CoreFoundation 0x00007fff8d337a59 CFStringCompare + 25
1 ios-deploy 0x0000000106a2c8f0 get_device_hardware_name + 80 (ios-deploy.c:318)
2 ios-deploy 0x0000000106a2d32a get_device_full_name + 106 (ios-deploy.c:424)
3 ios-deploy 0x0000000106a31523 handle_device + 51 (ios-deploy.c:1446)
4 ios-deploy 0x0000000106a32109 device_callback + 105 (ios-deploy.c:1585)
5 com.apple.mobiledevice 0x0000000106ac63a9 _AMDDeviceAttachedCallbackv3 + 157
6 com.apple.mobiledevice 0x0000000106a5315c _USBMuxCustomRunLoopSourcePerformCallback + 1416
7 com.apple.CoreFoundation 0x00007fff8d392661 CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 17
8 com.apple.CoreFoundation 0x00007fff8d3847ed __CFRunLoopDoSources0 + 269
9 com.apple.CoreFoundation 0x00007fff8d383e1f __CFRunLoopRun + 927
10 com.apple.CoreFoundation 0x00007fff8d383838 CFRunLoopRunSpecific + 296
11 com.apple.CoreFoundation 0x00007fff8d439ed1 CFRunLoopRun + 97
12 ios-deploy 0x0000000106a327a2 main + 1186 (ios-deploy.c:1796)
13 libdyld.dylib 0x00007fff975215c9 start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff92ed222e kevent64 + 10
1 libdispatch.dylib 0x00007fff9688aa6a _dispatch_mgr_thread + 52

Thread 2:
0 libsystem_kernel.dylib 0x00007fff92ed1946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff918c34a1 start_wqthread + 13

Thread 3:
0 libsystem_kernel.dylib 0x00007fff92ed1946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff918c34a1 start_wqthread + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff92ed1946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff918c34a1 start_wqthread + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff92ed1946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff918c34a1 start_wqthread + 13

Thread 6:
0 libsystem_kernel.dylib 0x00007fff92ed1946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff918c34a1 start_wqthread + 13

Thread 7:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff92ed13f6 __select + 10
1 libsystem_pthread.dylib 0x00007fff918c52fc _pthread_body + 131
2 libsystem_pthread.dylib 0x00007fff918c5279 _pthread_start + 176
3 libsystem_pthread.dylib 0x00007fff918c34b1 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000010
rdi: 0x0000000000000000 rsi: 0x0000000106a36690 rbp: 0x00007fff591d3950 rsp: 0x00007fff591d3930
r8: 0x00007fff591d36e0 r9: 0x00007fff7b750300 r10: 0x00000000000118a0 r11: 0x00007fff8d337a40
r12: 0x00007fcaf2f01800 r13: 0x00007fcaf2d01f90 r14: 0x0000000000000010 r15: 0x0000000106a36690
rip: 0x00007fff8d337a59 rfl: 0x0000000000010246 cr2: 0x0000000000000000

Logical CPU: 1
Error Code: 0x00000004
Trap Number: 14

Binary Images:
0x106a2b000 - 0x106a35fff +ios-deploy (0) /usr/local/bin/ios-deploy
0x106a45000 - 0x106b5dfff com.apple.mobiledevice (757.1.5.0.2 - 757.1.5.0.2) <364C6894-934B-3844-A77F-7DFEC21F8AEE> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice
0x106bda000 - 0x106c0fff7 libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
0x7fff6af9a000 - 0x7fff6afd0837 dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
0x7fff8a393000 - 0x7fff8abeaff3 com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8b60e000 - 0x7fff8b65dff7 libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
0x7fff8b65e000 - 0x7fff8b683ff7 libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff8b6a8000 - 0x7fff8b6a8fff com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8b70d000 - 0x7fff8b727ff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff8b728000 - 0x7fff8b7e3ff7 com.apple.DiscRecording (9.0 - 9000.4.1) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff8b7e5000 - 0x7fff8b7e5fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff8b815000 - 0x7fff8b82eff7 com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff8b97c000 - 0x7fff8b980fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff8b981000 - 0x7fff8b9acfff com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8b9ad000 - 0x7fff8b9affff libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
0x7fff8b9c2000 - 0x7fff8b9d2ff7 libbsm.0.dylib (34) /usr/lib/libbsm.0.dylib
0x7fff8b9d3000 - 0x7fff8b9d9fff libsystem_trace.dylib (72.1.3) /usr/lib/system/libsystem_trace.dylib
0x7fff8bc5a000 - 0x7fff8bc63ff3 com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff8bc64000 - 0x7fff8bc81ffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff8c04d000 - 0x7fff8c165ffb com.apple.CoreText (352.0 - 454.1) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff8c166000 - 0x7fff8c16efff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
0x7fff8c16f000 - 0x7fff8c1fbfff libsystem_c.dylib (1044.1.2) /usr/lib/system/libsystem_c.dylib
0x7fff8c2c4000 - 0x7fff8c2c4fff com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8c39e000 - 0x7fff8c39ffff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8c3ba000 - 0x7fff8c3d4ff7 com.apple.AppleVPAFramework (1.0.30 - 1.0.30) /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8c568000 - 0x7fff8c5a0ffb libsystem_network.dylib (411) /usr/lib/system/libsystem_network.dylib
0x7fff8c5a1000 - 0x7fff8c5a2ffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff8ca73000 - 0x7fff8ca7bfff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff8ca7c000 - 0x7fff8ca81fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff8cfb8000 - 0x7fff8d04dff7 com.apple.ColorSync (4.9.0 - 4.9.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8d04e000 - 0x7fff8d059ff7 libkxld.dylib (2782.1.97) /usr/lib/system/libkxld.dylib
0x7fff8d1ab000 - 0x7fff8d1abff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff8d22b000 - 0x7fff8d23fff7 com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff8d240000 - 0x7fff8d244fff libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
0x7fff8d29d000 - 0x7fff8d311ff3 com.apple.securityfoundation (6.0 - 55126) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8d312000 - 0x7fff8d6a8fff com.apple.CoreFoundation (6.9 - 1151.16) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff8d81e000 - 0x7fff8d824ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
0x7fff8d8a7000 - 0x7fff8d8afff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff8dcba000 - 0x7fff8ddadff7 libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff8ddbe000 - 0x7fff8ddc9fff libcommonCrypto.dylib (60061) /usr/lib/system/libcommonCrypto.dylib
0x7fff8de30000 - 0x7fff8e015267 libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
0x7fff8e89f000 - 0x7fff8e9b6fe7 libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff8e9cc000 - 0x7fff8ec46fff com.apple.CoreData (110 - 526) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8efa6000 - 0x7fff8efa6fff libOpenScriptingUtil.dylib (162) /usr/lib/libOpenScriptingUtil.dylib
0x7fff8efa7000 - 0x7fff8efc3ff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
0x7fff8f10a000 - 0x7fff8f117ff7 libxar.1.dylib (254) /usr/lib/libxar.1.dylib
0x7fff8f16a000 - 0x7fff8f175fff libGL.dylib (11.0.7) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff8f176000 - 0x7fff8f18dff7 libLinearAlgebra.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff8f18e000 - 0x7fff8f271fff libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8f27f000 - 0x7fff8f40dfff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff8f45e000 - 0x7fff8f462ff7 libGIF.dylib (1231) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8f463000 - 0x7fff8f4d4ff7 com.apple.framework.IOKit (2.0.2 - 1050.1.21) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8f99f000 - 0x7fff8f9d2ff7 com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff8fa17000 - 0x7fff8fa1fffb com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff8fa21000 - 0x7fff8fa4cfff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff903ad000 - 0x7fff90592ff3 libicucore.A.dylib (531.30) /usr/lib/libicucore.A.dylib
0x7fff905e0000 - 0x7fff9062efff libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
0x7fff9062f000 - 0x7fff9065cfff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff9066a000 - 0x7fff9072dff7 libvMisc.dylib (512) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff9077c000 - 0x7fff90781ff7 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib
0x7fff913fe000 - 0x7fff913fffff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff91400000 - 0x7fff9172eff7 com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff9174d000 - 0x7fff91793ffb libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff91794000 - 0x7fff9186aff3 com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff9186b000 - 0x7fff91881ff7 libsystem_asl.dylib (267) /usr/lib/system/libsystem_asl.dylib
0x7fff918c2000 - 0x7fff918cbfff libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
0x7fff91b79000 - 0x7fff91bb9ff7 libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff91bba000 - 0x7fff91c30fe7 libcorecrypto.dylib (233.1.2) /usr/lib/system/libcorecrypto.dylib
0x7fff91edb000 - 0x7fff91eddff7 libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
0x7fff92004000 - 0x7fff92411ff7 libLAPACK.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff92412000 - 0x7fff926f9ffb com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff9271d000 - 0x7fff92758fff com.apple.QD (301 - 301) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff92759000 - 0x7fff927b8ff3 com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff92e62000 - 0x7fff92e62ff7 liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
0x7fff92e63000 - 0x7fff92e8cffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib
0x7fff92ebb000 - 0x7fff92ed8fff libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
0x7fff92efd000 - 0x7fff92f43ff7 libauto.dylib (186) /usr/lib/libauto.dylib
0x7fff92f5b000 - 0x7fff92f5dfff com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff92fb2000 - 0x7fff93043ff7 libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
0x7fff93044000 - 0x7fff93055ff7 libsystem_coretls.dylib (35.1.2) /usr/lib/system/libsystem_coretls.dylib
0x7fff93168000 - 0x7fff9316bfff com.apple.IOSurface (97 - 97) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff935bb000 - 0x7fff935e0ff7 libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff9367d000 - 0x7fff937bafff com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff937bb000 - 0x7fff937bfff7 com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff9389f000 - 0x7fff938a0fff libSystem.B.dylib (1213) /usr/lib/libSystem.B.dylib
0x7fff93a13000 - 0x7fff93a1fff7 com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff93a3a000 - 0x7fff93a6cff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff9404f000 - 0x7fff944a2fc7 com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff944b1000 - 0x7fff9450cfff libTIFF.dylib (1231) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff9450d000 - 0x7fff94561fff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff94584000 - 0x7fff945f8fff com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff945fd000 - 0x7fff94601fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff94602000 - 0x7fff9486affb com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff949f8000 - 0x7fff949f8fff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff949f9000 - 0x7fff949feffb libheimdal-asn1.dylib (398.1.2) /usr/lib/libheimdal-asn1.dylib
0x7fff949ff000 - 0x7fff94b21ff7 com.apple.LaunchServices (644.12 - 644.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff94b45000 - 0x7fff94b4efff libGFXShared.dylib (11.0.7) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff94b6f000 - 0x7fff94b89ff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff94bda000 - 0x7fff94c02fff libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
0x7fff94c03000 - 0x7fff94c08ff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff94c75000 - 0x7fff94cc2ff3 com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff94cf7000 - 0x7fff94e62ff7 com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff94e8b000 - 0x7fff94f03ff7 com.apple.SystemConfiguration (1.14 - 1.14) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff9518f000 - 0x7fff951e0ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff951e1000 - 0x7fff95514ff7 libmecabra.dylib (666.1) /usr/lib/libmecabra.dylib
0x7fff9569e000 - 0x7fff9570cffb com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff9570d000 - 0x7fff95801ff7 libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff95802000 - 0x7fff95804ff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff95805000 - 0x7fff95809fff libCoreVMClient.dylib (79) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff9580a000 - 0x7fff9580aff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff9580b000 - 0x7fff9580dfff com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff95b25000 - 0x7fff95b62ff3 com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff95b63000 - 0x7fff95b7eff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib
0x7fff95b7f000 - 0x7fff95b86fff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff95b87000 - 0x7fff95b89ff7 libsystem_sandbox.dylib (358.1.1) /usr/lib/system/libsystem_sandbox.dylib
0x7fff9653a000 - 0x7fff96586ff7 libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
0x7fff96587000 - 0x7fff96592fdb com.apple.AppleFSCompression (68.1.1 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff9662c000 - 0x7fff96646ff7 libextension.dylib (55.1) /usr/lib/libextension.dylib
0x7fff96647000 - 0x7fff96690ff3 com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff96696000 - 0x7fff96788fff libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib
0x7fff96789000 - 0x7fff967cafff libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff967cb000 - 0x7fff967cefff com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff967df000 - 0x7fff9684efff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff96886000 - 0x7fff968b0ff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff968b8000 - 0x7fff969fafff libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
0x7fff969fb000 - 0x7fff96a55ff7 com.apple.LanguageModeling (1.0 - 1) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff96c0e000 - 0x7fff96c16ff7 com.apple.icloud.FindMyDevice (1.0 - 1) /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff96cba000 - 0x7fff96cc3ff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff96cc4000 - 0x7fff96d2bff7 com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff96d2c000 - 0x7fff96d5cfff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff96ef1000 - 0x7fff96ef2fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff96ef3000 - 0x7fff96f05fff libsasl2.2.dylib (193) /usr/lib/libsasl2.2.dylib
0x7fff96f0c000 - 0x7fff96fabdf7 com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff974e1000 - 0x7fff974e9ffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff97509000 - 0x7fff9750bfff libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff97510000 - 0x7fff9751dff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff9751e000 - 0x7fff97521ff7 libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
0x7fff97547000 - 0x7fff97548ff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff97549000 - 0x7fff97579ffb com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff975b0000 - 0x7fff975c1ff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff975c2000 - 0x7fff975d0ff7 com.apple.opengl (11.0.7 - 11.0.7) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff975f4000 - 0x7fff975f6fff libRadiance.dylib (1231) <746E9989-E89C-3027-A418-5F99CE131C93> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff97602000 - 0x7fff9760cff7 com.apple.NetAuth (5.0 - 5.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff985b2000 - 0x7fff985c3fff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff98fb4000 - 0x7fff98fb5fff liblangid.dylib (117) /usr/lib/liblangid.dylib
0x7fff98fd0000 - 0x7fff98fd2ff7 libquarantine.dylib (76) /usr/lib/system/libquarantine.dylib
0x7fff98fd3000 - 0x7fff99071fff com.apple.Metadata (10.7.0 - 916.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff99072000 - 0x7fff99079ff7 libcompiler_rt.dylib (35) /usr/lib/system/libcompiler_rt.dylib
0x7fff9907a000 - 0x7fff990a5ff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff990a6000 - 0x7fff990b1ff7 libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
0x7fff993ad000 - 0x7fff993bcfff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff996df000 - 0x7fff997d1ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff997d8000 - 0x7fff99855fff com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff99856000 - 0x7fff99a59ff3 com.apple.CFNetwork (720.1.1 - 720.1.1) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff99bb7000 - 0x7fff99bc2ff7 com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff99bc3000 - 0x7fff99bebfff libsystem_info.dylib (459) /usr/lib/system/libsystem_info.dylib
0x7fff99d37000 - 0x7fff99d6effb com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 9818
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=146.1M resident=156.7M(107%) swapped_out_or_unallocated=16777216.0T(12040422817792%)
Writable regions: Total=55.9M written=844K(1%) resident=1948K(3%) swapped_out=0K(0%) unallocated=54.0M(97%)

REGION TYPE VIRTUAL
=========== =======
Dispatch continuations 8192K
Kernel Alloc Once 4K
MALLOC 36.3M
MALLOC (admin) 32K
STACK GUARD 56.0M
Stack 11.1M
VM_ALLOCATE 44K
__DATA 6796K
__LINKEDIT 70.6M
__TEXT 75.6M
__UNICODE 544K
shared memory 4K
=========== =======
TOTAL 264.9M

Model: MacBookPro6,1, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.57f18

from ios-deploy.

okonon avatar okonon commented on May 23, 2024

Killall lldb did not help.
I also found this in terminal log. It looks like iOS-deploy does not see connected device:

    Running command: /Users/barbarian/Dev/Cordova/FH/FH3/WorkTips/WorkTips-Yo/platforms/ios/cordova/run 
  No device is connected, trying Simulator.
  Build settings from command line:
    ARCHS = i386
    CONFIGURATION_BUILD_DIR = /Users/barbarian/Dev/Cordova/FH/FH3/WorkTips/WorkTips-  Yo/platforms/ios/build/emulator
    SDKROOT = iphonesimulator8.1
    VALID_ARCHS = i386

  === BUILD TARGET CordovaLib OF PROJECT CordovaLib WITH CONFIGURATION Debug ===

from ios-deploy.

okonon avatar okonon commented on May 23, 2024

Also this was red in terminal
not sure what it means.
Thanks for the help.

2014-11-14 22:14:20.544 xcodebuild[10397:146053]  DeveloperPortal: Using pre-existing current store at URL (file:///Users/user/Library/Developer/Xcode/DeveloperPortal%206.1.db).

from ios-deploy.

trippingtarballs avatar trippingtarballs commented on May 23, 2024

I'm seeing the same issue as @softBarbarian, and I'm pretty sure it's related to #80 – the exit code from ios-deploy -c is not giving 0 when a "successful connection" is achieved, and hence the message: No device is connected, trying Simulator.

With iPhone 4S attached:

$ ios-deploy -c --timeout 2
[....] Waiting up to 2 seconds for iOS device to be connected
[....] Found iPhone 4S 'iPhone 4S' (4bc5ee6577df39826d45e0d871bc538b28eb9d84) connected through USB.
[....] No more devices found.

$ echo $?
253

With no device attached:

$ ios-deploy -c --timeout 2
[....] Waiting up to 2 seconds for iOS device to be connected
[....] No more devices found.

$ echo $?
253

For completeness, the version of ios-deploy:

$ ios-deploy --version
1.3.1

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Ugh I see the flaw in my patch :/ will fix soon

from ios-deploy.

senthilmanick avatar senthilmanick commented on May 23, 2024

Hi ShazronIs 1.3.1 turning on the -d implicitly and returning zero if at least one device was found for -c

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Thanks @senthilmanick that helped, --debug needs to be turned on implicitly. I've fixed the underlying problem in #80

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

#80 has been re-fixed, and 1.3.2 was published.

from ios-deploy.

aogilvie avatar aogilvie commented on May 23, 2024

@shazron I found I was getting this error when the path to the application was incorrect [ios-deploy -d -b "$DEVICE_APP_PATH"]

Running the following command manually with the .app file path allowed me push without issues to a device.

ios-deploy --debug -d -b /Users/aogilvie/Documents/wizcorp/<appname>/platforms/ios/build/device/<appname>.app

So I think DEVICE_APP_PATH is incorrect.

I could replicate an assertion error and throw "ios-deploy quit unexpectedly" as follows:

ios-deploy --debug -d -b /Users/aogilvie/Documents/wizcorp/<appname>/platforms/ios/build/<appname>.build/Debug-iphoneos/<appname>.build/<appname>.app.xcent /Users/aogilvie/Documents/wizcorp/<appname>/platforms/ios/build/device/<appname>.app
[....] Waiting for iOS device to be connected
[....] Using iPod touch 5G 'wizcorp_iPod5_001' (63f701b1a48d857f95bc022fb527a475f3356973) (63f701b1a48d857f95bc022fb527a475f3356973).
------ Install phase ------
[  0%] Found iPod touch 5G 'wizcorp_iPod5_001' (63f701b1a48d857f95bc022fb527a475f3356973) connected through USB, beginning install
Assertion failed: (AMDeviceSecureTransferPath(0, device, url, options, transfer_callback, 0)==0), function handle_device, file ios-deploy.c, line 1532.
Abort trap: 6

from ios-deploy.

Shilo avatar Shilo commented on May 23, 2024

I had the same issue. My fix was to allow my iOS device to "trust" my computer. It was easily overlooked when re-installing OS X.

from ios-deploy.

ohh2ahh avatar ohh2ahh commented on May 23, 2024

I have the same issue with OSX Yosemite and ios-deploy v1.4.0. Killing old instances of lldb didn't help.

$ ios-deploy --debug --bundle platforms/ios/build/device/<appname>.app
// or
$ cordova run ios --device
// or
$ ionic run ios --device
[....] Waiting for iOS device to be connected
[....] Using iPhone 6 (GSM) 'iPhone 6' (227eb7<...>) (227eb7<...>).
------ Install phase ------
[  0%] Found iPhone 6 (GSM) 'iPhone 6' (227eb7<...>) connected through USB, beginning install
Assertion failed: (AMDeviceSecureTransferPath(0, device, url, options, transfer_callback, 0)==0), function handle_device, file ios-deploy.c, line 1516.
Abort trap: 6
  • sw_vers: 10.10.2
  • ios-deploy: 1.4.0
  • xcodebuild: Xcode 6.2, Build version 6C131e
  • xcode-select: /Applications/Xcode.app/Contents/Developer
  • gcc:
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.57) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin14.1.0
Thread model: posix
  • lldb: lldb-320.4.160

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

1.5.0 has some improvements, let me know. https://github.com/phonegap/ios-deploy/releases/tag/1.5.0

from ios-deploy.

listrophy avatar listrophy commented on May 23, 2024

I had been getting the same as @drastick:

[ 0%] Looking up developer disk image
[ !! ] Unable to mount developer disk image. (e8000033)

I realized that I had a beta of Xcode selected through xcode-select, so a quick sudo xcode-select -s /Applications/Xcode.app/Contents/Developer got me through this.

Next, I got this:

[100%] Installed package /Users/path/to/app/platforms/ios/build/device/MyApp.app
------ Debug phase ------
Cannot debug (...1234udid...) over WIFI.

Strangely enough, I don't even have WiFi Sync enabled, according to iTunes. And yes, the device is plugged in through a simple lightning USB cable. The app was getting on the phone, but it wasn't getting run. So, next I deleted the app and tried again.

Now, I get this:

[100%] Installed package /Users/path/to/app/platforms/ios/build/device/MyApp.app
------ Debug phase ------
Starting debug of iPhone 5s (GSM) 'Juliette' (...123udid...) connected through USB...
[  0%] Looking up developer disk image
[ 95%] Developer disk image mounted successfully
/Users/path/to/app/platforms/ios/cordova/run: line 116: 16666 Abort trap: 6           ios-deploy -d -b "$DEVICE_APP_PATH"

Again, the app gets successfully deployed to the phone, but it doesn't get run.

My config:

$ sw_vers -productVersion
10.10.3
$ ios-deploy -V
1.5.0
$ xcodebuild -version
Xcode 6.3
Build version 6D570
$ xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
$ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.3.0
Thread model: posix
$ lldb --version
lldb-330.0.44

Apologies if this is actually a cordova or ionic issue, but I'm thinking it's ios-deploy.

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

@listrophy you mentioned that it is installed but doesn't run. Can it run manually? (just checking the integrity of the install)

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

@listrophy, in the root of your cordova app, can you run:

cordova build --device 
ios-deploy -d -b platforms/ios/build/device/YOURAPPNAME.app

Substitute YOURAPPNAME for your app's name. If you get an error, paste it here.

from ios-deploy.

ohh2ahh avatar ohh2ahh commented on May 23, 2024

I think that I've finally found the cause of my issue. I'm using a german umlaut (ü) in my app name (configured in config.xml), which is obviously not supported. I'd be very happy if you could fix this.

  • sw_vers: 10.10.3
  • ios-deploy: 1.7.0
  • xcodebuild: Xcode 6.3.2, Build version 6D2105
  • xcode-select: /Applications/Xcode.app/Contents/Developer
  • gcc:
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.3.0
Thread model: posix
  • lldb: lldb-330.0.48

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

@ohh2ahh thanks, I'll file a new issue. Just to confirm, if you just use ascii letters in your app name it works fine, yes? (trying to rule out other issues)

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Filed #147

from ios-deploy.

ohh2ahh avatar ohh2ahh commented on May 23, 2024

@shazron Yes, without the umlaut everything works perfectly fine. Re-adding the umlaut brings the same issue back. Thanks for your effort, I appreciate it very much!

from ios-deploy.

haxpor avatar haxpor commented on May 23, 2024

@listrophy I have the same issue with iOS 8.4 and Xcode 8.4. Just shutting down your phone and restart again will fix the problem in my case. See #155.

from ios-deploy.

shazron avatar shazron commented on May 23, 2024

Fixed in #56

from ios-deploy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.