1

Is it possible to create an Apple Watch application without a need of an iPhone app ? I want to create a simple app that uses the bluetooth framework of the Apple WAtch and search for near devices. (without having an iphone around). Thank you

2
  • No, you cannot. You have to create an iOS app with a watch view. I'll let other people confirm or deny my statement, my information could be outdated.
    – Mustafa
    Commented Feb 7, 2018 at 0:17
  • There is nothing that you so-call iWatch. The user won't be able to install Apple Watch apps without the iPhone.
    – El Tomato
    Commented Feb 7, 2018 at 0:40

2 Answers 2

2

In iOS 13 it's possible to create independent watchOS application. More information can be found here. You have to download Xcode 11 to be able to create independent watchOS application.

To create it simply go to File -> New -> Project and select watchOS -> App as it's shown on a screenshot: enter image description here

Be aware that even though it's possible to create indepentent watchOS app (e.g. with CoreBluetooth) there will be some limitations with methods usage. For example it's not possible to call this method of CBMutableService:

- (instancetype)initWithType:(CBUUID *)UUID primary:(BOOL)isPrimary NS_DESIGNATED_INITIALIZER __TVOS_PROHIBITED __WATCHOS_PROHIBITED;
1

You cannot create a watchOS application without an iOS app. First of all, you can only add a Watch extension to an existing iOS project in Xcode. Secondly, even if you could create a standalone watchOS project in Xcode, you wouldn't be able to publish it to the AppStore, since each WatchKit app needs to have a functioning iOS counterpart to be accepted in the AppStore, so you cannot just create a dummy iOS app.

2
  • What if the app is not designed to be on the AppStore, can I create then a standalone watchOS app without the need of a counterpart iOS app?
    – Emil Adz
    Commented Mar 12, 2019 at 10:52
  • 1
    @EmilAdz no. You can only create a watchOS app as an extension to an existing iOS Xcode project Commented Mar 12, 2019 at 11:06

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.