Reputation: 9244
When I run the following command in my iOS9 application:
AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
Then the following message is shown on the command line:
ERROR: 126: IPCAUClient: bundle display name is nil
Any suggestions?
Upvotes: 3
Views: 1029
Reputation: 9244
Just found out,that CFBundleDisplayName
entry in my Apps info.plist
file was missing.Adding this fixed the error.
Upvotes: 5