I think you're witnessing a bug with Xcode/Cocoapods rather than the project itself here.
I was able to see those errors myself but you can fix them by running pod install prior to running the example project on the swift-4 branch.
Steps to reproduce:
Checkout branch swift-3.2
Run pod install
Run the project (works fine)
Checkout branch swift-4 but do not run pod install
Run the project (fails with the error that range(at:) was renamed)
If you now run pod install and try again, these errors are gone.
Hi,
I think you're witnessing a bug with Xcode/Cocoapods rather than the project itself here. I was able to see those errors myself but you can fix them by running
pod install
prior to running the example project on theswift-4
branch.Steps to reproduce:
swift-3.2
pod install
swift-4
but do not runpod install
range(at:)
was renamed)pod install
and try again, these errors are gone.