URLNavigator icon indicating copy to clipboard operation
URLNavigator copied to clipboard

adding URLNavigator.framework and URLMatcher.framework triggers "This application’s bundle identifier does not match its code signing identifier"

Open etugadoWNG opened this issue 7 years ago • 6 comments

Issue is similar to https://github.com/duemunk/Async/issues/109

Lets you build on the simulator but not on a real device

etugadoWNG avatar Mar 08 '18 05:03 etugadoWNG

Also ran into this. Ugg.

ZaBlanc avatar Mar 09 '18 21:03 ZaBlanc

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 []
    }

ZaBlanc avatar Mar 09 '18 21:03 ZaBlanc

Are you using Carthage or something else?

devxoul avatar Mar 10 '18 14:03 devxoul

Carthage.

ZaBlanc avatar Mar 10 '18 15:03 ZaBlanc

Hmm. This is weird. I'll mark this issue as 'help wanted'.

devxoul avatar Mar 12 '18 06:03 devxoul

I resolved this by ensuring both were included in the carthage copy-frameworks build phase

aehlke avatar Jul 19 '18 21:07 aehlke