Carthage issue with latest version: "dyld: Symbol not found" in Reachability framework #442
Labels
bug
Something isn't working
build
Issues related to build and CI/CD
closing-soon-if-no-response
This issue will be closed in 7 days unless further comments are made.
Using the latest (3.1.12) version via Carthage, the app crashes with
This is due to some version mismatch of the Reachability framework. It is included in the Cartfile using
~> 5.0.0
, which currently pulls version 5.1.0 of the framwork (the latest version).A workaround is to add
github "ashleymills/Reachability.swift" "v5.0.0"
to my own Cartfile, and pull down version 5.0.0 instead of 5.1.0 (I rancarthage udpate
a second time to avoid any version conflict). This works, but please fix the dependencies in your own Cartfile.The text was updated successfully, but these errors were encountered: