1

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)"

Qazi Ammar
  • 953
  • 1
  • 8
  • 23

3 Answers3

2

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).

Heps
  • 945
  • 9
  • 24
0

I set User Defined -> VALID_ARCHS to $(ARCHS_STANDARD) and that helped.

Chris Hobbs
  • 495
  • 6
  • 5
0

Go to project WatchKit app build phases and UNCHECK copy only when installing

This solution for me to run in simulator.

enter image description here

AzeTech
  • 623
  • 11
  • 21