ios7.1 - How to link with framework without arm64 support in Xcode 5.1? -


after upgraded project on xcode 5.1, product > build gives following warning , error:

ld: warning: ignoring file dropbox/dropbox.framework/dropbox, missing required architecture arm64 in file dropbox.framework/dropbox (3 slices)

undefined symbols architecture arm64: "_objc_class_$_dbpath", referenced from: objc-class-ref in dropboxviewcontroller.o

it seems dropbox.framework not support arm64 yet.

what xcode settings remove arm64 support project have clean build?

enter image description here

change:

  • architectures: standard
  • valid architectures: arm64 armv7 armv7s

to:

  • architectures: armv7 armv7s
  • valid architectures: armv7 armv7s

Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -