Xcode unsupported armv7k architecture

When trying to test my new application using watchkit with xcode 6.2, I get a strange error:

Failed to complete iTunes Store operation. Unsupported architectures. Your executable contains unsupported architectures [armv7k] '.

What does even armv7k mean? All my build settings (for the application and all extensions) look like the one shown in the following screenshot: build settings Could the red color of my embedded binaries have something to do with this problem? Everything works fine on my device and on the simulators. enter image description here Thanks in advance!

Update: xCode 6.2 and iOS 8.2 have been released. The problem still exists.

+5
source share
2 answers

This more than likely does not pass the test, as you cannot submit viewers yet.

Per https://developer.apple.com/watchkit/ :

Please note: apps built with the Xcode 6.2 and iOS 8.2 SDK can be shipped to the App Store. However, WatchKit extensions are not currently accepted.

+4
source

I think this is the architecture of the new Apple Watch. This is not the architecture of your main application, so you cannot see it in the build settings of your application. It’s probably not possible to send the application from the beta version of Xcode.

I have the same problem, but from Xcode 6.2 (and not for beta). Itunesconnect may not yet support watchkit extensions.

0
source

Source: https://habr.com/ru/post/1214935/


All Articles