uber / uber-ios-sdk

Uber iOS SDK (beta)
https://developer.uber.com/docs
MIT License
376 stars 125 forks source link

Carthage/Checkouts Dependencies EMPTY #123

Closed escully27 closed 7 years ago

escully27 commented 8 years ago

When I try to manually add the UberRides SDK, the step with adding dependencies to the subproject causes issue. It appears the downloaded folder of Carthage/Checkouts has subfolders for the appropriate dependencies but they're empty. Same for the Swift SDK example project - it fails for the same reason. Any clarification would be great.

jbrophy17 commented 8 years ago

Sorry to hear you're having trouble. Are you running into issues manually adding the SDK to your project or just with getting the example projects to build?

The Carthage/Checkouts folder contains the git submodules for the dependencies, if you are seeing them empty, try running git submodule update --recursive and that should clone whatever is missing.

escully27 commented 8 years ago

Just kidding - got it to work! Lol thanks anyways. :)

jbrophy17 commented 8 years ago

Hah, glad to hear it What ended up being the problem? (might help someone in the future with the same issue)

escully27 commented 8 years ago

My main project would run but crash immediately, with barely any error output dylddyld_fatal_error: -> 0x1200ad088 <+0>: brk #0x3` I needed to put the ObjectMapper.framework in the UberRides.proj Linked Frameworks, but also in my main projects embedded binaries. Seemed to shut xcode up.

jbrophy17 commented 7 years ago

Closing this since you got it to work