Reputation: 1563
My program runs fine when i use the simulator however, when i try run it on an ios Device i get the apple mach-o linker error. This only started to happen when i added the soundcloud api
This is the error I'm getting:
Upvotes: 0
Views: 153
Reputation: 21244
This means the library you are linking against (Soundcloud) was not built for arm64. It looks like some of your other dependancies (like JSONKit) were also not built for arm64.
If you change your build architectures to only build for the architectures you can support (armv7, armv7s), that is one way of fixing the problem.
Upvotes: 1