0

I built an app that uses ZbarSDK for barcode scan, the app works fine when running over the simulator, but when I try to archive it on a real device this error shows up:

Ahmad F
  • 30,560
  • 17
  • 97
  • 143

1 Answers1

1

You are compiling your app for the armv7s architecture but ZbarSDK isn’t compiled for armv7s. So either compile ZbarSDK for armv7s (preferred) or don’t compile your app for armv7s.

0xced
  • 25,219
  • 10
  • 103
  • 255