tristanhimmelman/AlamofireObjectMapper

Building for iphonesimulator

Closed this issue · 7 comments

when installing via Carthage building for iphonesimulator fails if signature is not present (no iPhone developer account)
Base ObjectMapper library builds fine for iphonesimulator target

This PR for Carthage actually says that having iPhone Developer account is no longer a requirement to build for iPhone Simulator and debugging
Carthage/Carthage#583

The bug is in the iOS target build settings - it requires signature for iOS Simulator, while the correct value should be 'Don't sign'. Changing it resolves the problem

Looks like manual change in the project settings and building in Carthage results in Xcode crashes on breakpoints that are set inside closer of responseObject() method.
Any way this could be fixed in repository?

Crash when breakpoint is inside responseObject()
https://gist.github.com/AAverin/e3d293ca168b53443773

Hi @AAverin,

I'm not sure exactly what is causing the problem you are experiencing... I just created a new project using Carthage and I was able to put a break point within the responseObject() function without a problem.

The case might be that I don't have iOS developer license and build for simulator-only.

I think you are probably right about this...