I'm entirely new to development for Apple Platforms. I started by installing Xcode and setting up a new watchOS project. I noticed that I have three "products" within my new project:
- My App
- My App WatchKit App
- My App WatchKit Extension
The first one seems to be the actual AppStore target, the second one the actual app and not sure about the third one. My code resides in the "My App WatchKit Extension" while "My App WatchKit App" just contains an asset catalog and the Info.plist file.
Unfortunately, my App shows up on watchOS devices as "My App WatchKit App". I just want it to be "My App" obviously. I could change the "Product Name" property of "My App WatchKit App" to "My App". However, it defaults to "$(TARGET_NAME)". So I'm unsure if I should rename the whole target or just set the "Product Name" property of the "My App WatchKit App" target. What are the best practices here?