Reputation: 708
I get the following message in the console when running my app after upgrading to the latest Xcode 7 Beta:
objc[51750]: Class STGenericIntentDateRange is implemented in both /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/SiriTasks.framework/SiriTasks and /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/PhotosUI.framework/PhotosUI. One of the two will be used. Which one is undefined.
I can't find any mention of STGenericIntentDateRange in Apple's documentation or anywhere online. It doesn't appear to be affecting my app and there is no associated warning when building - the message is simply logged.
I'm guessing this is just a beta conflict issue dealing with some rarely used date functionality but I'm wondering if anyone else has seen this or knows a fix?
Upvotes: 32
Views: 464
Reputation: 38727
To close the loop here:
That class was internal to Apple.
That warning message was short-lived in Xcode 7.0 Beta and should be gone in Xcode 7.0 Release and newer.
So the "fix" is to update to a newer Xcode.
Upvotes: 0