3

here is the error code I get

WatchKit App doesn't contain any WatchKit Extensions whose WKAppBundleIdentifier matches "com.rshelver.tallyCounter.watchkitapp". Verify that the value of WKAppBundleIdentifier in your WatchKit Extension's Info.plist matches the value of CFBundleIdentifier in your WatchKit App's Info.plist.

Sorry I don't know a ton about Swift atm, I'm really new and I'm just looking to

jnpdx
  • 45,847
  • 6
  • 64
  • 94
Rshelver
  • 49
  • 5
  • The error gives specific instructions: "Verify that the value of WKAppBundleIdentifier in your WatchKit Extension's Info.plist matches the value of CFBundleIdentifier in your WatchKit App's Info.plist." Have you done this? – jnpdx Apr 13 '21 at 20:45
  • I'm aware. I haven't been able to find CFBundleIdentifier. I went through all the .plist files and it doesn't exist – Rshelver Apr 13 '21 at 20:47
  • If you're looking at it in Xcode, it normally shows the human-readable keys, not the true underlying keys. Do you see "Bundle Identifier"? – jnpdx Apr 13 '21 at 20:50
  • https://stackoverflow.com/questions/66984050/how-to-set-bundle-ids-app-identifiers-and-provisioning-profiles-to-publish-a-wa/66985435#66985435 – lorem ipsum Apr 13 '21 at 21:05
  • @jnpdx yeah! all of them are the way they should be when building a watchOS app – Rshelver Apr 13 '21 at 21:54
  • Hmm. Well, Xcode doesn't think so. If you're convinced there are no differences (including case sensitivity) I'd probably to a 'clean' and then try building again. – jnpdx Apr 13 '21 at 21:55

1 Answers1

1

Here is the answer: In the info plist for both the watch extension and the watch app they need to adhere to the following changes like this example

https://github.com/gabrieloc/GIOVANNI/issues/11

Ehab Saifan
  • 290
  • 2
  • 13