adding URLNavigator.framework and URLMatcher.framework triggers "This application’s bundle identifier does not match its code signing identifier"
Issue is similar to https://github.com/duemunk/Async/issues/109
Lets you build on the simulator but not on a real device
Also ran into this. Ugg.
So, I grabbed the source and just copied it to my app. Interestingly, the adoption of URLConvertible by String and URL need these two methods added:
public var queryParameters: [String: String] {
return [:]
}
public var queryItems: [URLQueryItem]? {
return []
}
Are you using Carthage or something else?
Carthage.
Hmm. This is weird. I'll mark this issue as 'help wanted'.
I resolved this by ensuring both were included in the carthage copy-frameworks build phase