iPhone app could not be installed at this time

后端 未结 20 1694
花落未央
花落未央 2021-01-30 05:23

i was trying to install my iphone application from testflight. it installs perfectly on few devices but in some after installing about 80 percent it gives an error \"Unable to d

20条回答
  •  旧巷少年郎
    2021-01-30 05:41

    As for Xcode 5.1, the problem was in arm64 architecture in VALID_ARCHS. Building the release configuration for 5.0 device locally gives the following error:

    Xcode cannot install or launch applications supporting the 64-bit architecture on devices running iOS versions prior to 6.0. This configuration is supported for distribution through the iOS App Store, but cannot be used during development with Xcode. To continue, edit the Run scheme action and select a build configuration that does not include the 64-bit architecture.

    Removing arm64 from VALID_ARCHS solves the issue. In my case I had to create a separate branch for testing on iOS 5 devices.

提交回复
热议问题