Reputation: 185
I am using the latest version of Xcode(4.2.1) and out of the blue, when I try to run my code on my device, the following flurry of text appears on the console:
warning: Unable to read symbols for /Users/ahanmalhotra/Library/Developer/Xcode/iOS DeviceSupport/5.0.1 (9A405)/Symbols/System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader (file not found).
warning: No copy of AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader found locally, reading from memory on remote device. This may slow down the debug session.
warning: Unable to read symbols for /Users/ahanmalhotra/Library/Developer/Xcode/iOS DeviceSupport/5.0.1 (9A405)/Symbols/System/Library/AccessibilityBundles/UIKit.axbundle/UIKit (file not found).
warning: No copy of UIKit.axbundle/UIKit found locally, reading from memory on remote device. This may slow down the debug session.
warning: Unable to read symbols for /Users/ahanmalhotra/Library/Developer/Xcode/iOS DeviceSupport/5.0.1 (9A405)/Symbols/System/Library/AccessibilityBundles/TelephonyUIFramework.axbundle/TelephonyUIFramework (file not found).
warning: No copy of TelephonyUIFramework.axbundle/TelephonyUIFramework found locally, reading from memory on remote device. This may slow down the debug session.
warning: Unable to read symbols for /Users/ahanmalhotra/Library/Developer/Xcode/iOS DeviceSupport/5.0.1
(9A405)/Symbols/System/Library/AccessibilityBundles/AXExtraExtras.axbundle/AXExtraExtras (file not found).
warning: No copy of AXExtraExtras.axbundle/AXExtraExtras found locally, reading from memory on remote device. This may slow down the debug session.
After this appears, my app starts normally and works. I am using an iPhone 4S running iOS 5.0.1. I have checked and "Generate Debug Symbols" is set to yes.
Is there a way to fix this?
Thanks
Upvotes: 1
Views: 1391
Reputation: 534882
What I found is that I needed to turn off Accessibility completely on the device. That means in Settings > General > Accessibility everything must be Off, including Triple-Click Home.
Upvotes: 2
Reputation: 124
The only thing I tried was to copy over the missing files from
/Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.0 (9A334)/Symbols/System/Library
However you then get a warning about "UUID mismatch detected" for those same libraries. Not sure if there is much gained by doing so.
Upvotes: 0
Reputation: 1843
Odds are you're missing some files. Check out this StackOverflow question and answer. It helped me.
Upvotes: 0