Quite abrupdedly my project stopped executing by reporting error:
error: WatchKit App doesn't contain any WatchKit Extensions. Verify that the value of NSExtensionPointIdentifier in your WatchKit Extension's Info.plist is set to com.apple.watchkit.
Of course NSExtensionPointIdentifier is correctly set to com.apple.watchkit.
What could it be and how to fix it?
This is the relevant part of the info.plist file:
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>WKAppBundleIdentifier</key>
<string>com.information.inArrivo.watchkitapp</string>
</dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.watchkit</string>
</dict>