WatchKit 1 apps aren't supported on this version of watchOS. Quitting "(null)"

Viewed 267

I have shifted my watchOS (swiftUI) project form Intel mac 2016 to Mac M1 2020. Project is working fine on Intel mac but on M1 app start crashing after start with this error message on console log.

WatchKit 1 apps aren't supported on this version of watchOS. Quitting "(null)"

1 Answers

I had the same problem.

In my situation everything was set correctly on Watch App target.

But under Watch Extension there was a "arm64" entry in Excluded Architectures section.

Removing that entry solved the problem (as M1 Simulator is arm64).

Related