ios5 - Testing app on iPad 1 (iOS 5.1.1) using Xcode 6.2 -


when launch app using xcode 6.2 on ipad 1 running ios 5.1.1, following error:

unsupported run configuration: xcode cannot install or launch applications supporting 64-bit architecture on devices running ios version prior 6.0

i couldn't find documentation on how exclude architecture. ideas? app's deployment target set 5.1.1.

the problem in arm64 architecture in valid_archs.

removing arm64 valid_archs solves issue. in case had create separate branch testing on ios 5 devices.

enter image description here

then try run app.

set setting xcode

  1. archs = armv7 armv7s
  2. valid_archs = armv7 armv7s arm64
  3. in case, binary built armv7 armv7s arm64 architectures. same binary run on archs = armv7 armv7s.

Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -