WatchKit Extension bundle identifiers

后端 未结 4 468
日久生厌
日久生厌 2020-12-04 07:56

I am trying to build my app but it failed. I am shown the message below.

error: WatchKit Extension doesn\'t contain any WatchKit apps whose bundle ide

4条回答
  •  不思量自难忘°
    2020-12-04 08:21

    You have to be careful when changing the bundle identifiers, and here's how they should be set (you need to change each identifier in the Info.plist for the iPhone app, for the Watchkit Extension and for the Watchkit App):

    iPhone Application Info.plist:

    Set any bundle identifier as you like (the "Bundle identifier" property).

    Example:

    Bundle identifier: com.fruitcompany.orange
    

    WatchKit App Info.plist

    The bundle identifier here must be prefixed with the identifier of the iPhone application, like this(example):

    Bundle identifier: com.fruitcompany.orange.watchkit
    

    You also need to change the WKCompanionAppBundleIdentifier which must match with the iPhone application bundle identifier, like this:

    WKCompanionAppBundleIdentifier: com.fruitcompany.orange
    

    WatchKit Extension Info.plist:

    The bundle identifier here must be prefixed with the identifier of the iPhone application, like this(example):

    Bundle identifier: com.fruitcompany.orange.watchkit.extension
    

    You also need to set the WKAppBundleIdentifier under the NSExtension attribute.

    WKAppBundleIdentifier

    The WKAppBundleIdentifier identifier must match with the WatchKit app bundle identifier like this:

    WKAppBundleIdentifier: com.fruitcompany.orange.watchkit
    

    Don't forget to check that your Bundle ID in project target is the same as in Info.plist!

提交回复
热议问题