1

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

Ahan Malhotra
  • 195
  • 1
  • 4
  • 17

3 Answers3

2

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.

matt
  • 515,959
  • 87
  • 875
  • 1,141
0

Odds are you're missing some files. Check out this StackOverflow question and answer. It helped me.

Community
  • 1
  • 1
lambmj
  • 1,843
  • 2
  • 21
  • 27
0

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.

Brad Howes
  • 114
  • 1
  • 6