objcio / app-architecture

Sample Code of the App Architecture Book
https://www.objc.io/books/app-architecture
2.06k stars 306 forks source link

Outdated Cartfile in MVVM-C project #16

Open adamzarn opened 5 years ago

adamzarn commented 5 years ago

I was getting an xcodebuild error when running carthage update --platform iOS for the MVVM-C project as it couldn't build RxDataSources. I got it to work by updating the cartfile to this:

github "ReactiveX/RxSwift" ~> 4.0.0
github "RxSwiftCommunity/RxDataSources" ~> 3.0

I don't want to create a PR because I'm not sure if this was just an issue for me.