Help with initial setup? #4
-
I really enjoy this watchface and wanted to see if I could maybe add some functionality/options or fork it for myself. I'm new to Garmin programming and am having difficulties getting the simulator running from the cloned repo. Specifically I'm having the following problems. There initially is no manifest.xml file. Any ideas? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi! Have you seen this explanation from garmin about the manifest file? https://developer.garmin.com/connect-iq/core-topics/manifest-and-permissions/ The reason why I can't share it openly is that the manifest file has a unique Id that identifies it on the connectIQ store, but it is a very straightforward file to create that only includes: the unique ID, list of supported watches and required permissions. My guess is that you might be missing the product (venu 2 on your test) on the manifest. The easiest way to add the products is by using visual studio code's shortcuts (ctrl+shift+P, if I'm not wrong) and selecting add/edit products, then select the watches that you want to support and they will be automatically added to the manifest. Generate a new UID and changing permissions all could be changed the same way (through the shortcuts). If you've tried this and still can't seem to run the code, then just post your manifest here (without the UID) and I could have a look at it. |
Beta Was this translation helpful? Give feedback.
-
@filmo003 how did you get around the missing |
Beta Was this translation helpful? Give feedback.
Hi! Have you seen this explanation from garmin about the manifest file? https://developer.garmin.com/connect-iq/core-topics/manifest-and-permissions/
The reason why I can't share it openly is that the manifest file has a unique Id that identifies it on the connectIQ store, but it is a very straightforward file to create that only includes: the unique ID, list of supported watches and required permissions.
My guess is that you might be missing the product (venu 2 on your test) on the manifest. The easiest way to add the products is by using visual studio code's shortcuts (ctrl+shift+P, if I'm not wrong) and selecting add/edit products, then select the watches that you want to support and t…