10-01-2020 12:11
10-01-2020 12:11
Hi,
I already have an OS4 watch face published and have created a new build in Fitbit Studio for OS5. I have downloaded the .fba files but when trying to add to my existing watch face it rejects it and says it has a different UUID to the original.
It states in this page that "you can publish different builds targeting each version in a single GAM listing", however how do you do this?
Many thanks in advance,
Tom
Answered! Go to the Best Answer.
10-01-2020 13:15
10-01-2020 13:15
The app UUID is included inside package.json.
{
"fitbit": {
"appUUID": "shared UUID here"
...
}
}
Since you are working in Studio, this file has a UI put on top. If you don't want to go the route of downloading everything and making that change on disk, you can rename package.json into something like _package.json, make the UUID change, and then rename the file back.
10-01-2020 13:15
10-01-2020 13:15
The app UUID is included inside package.json.
{
"fitbit": {
"appUUID": "shared UUID here"
...
}
}
Since you are working in Studio, this file has a UI put on top. If you don't want to go the route of downloading everything and making that change on disk, you can rename package.json into something like _package.json, make the UUID change, and then rename the file back.
10-01-2020 13:52
10-01-2020 13:52
Thanks LifeOmic-Dev for the quick reply.
Am I correct in thinking that I just upload the compiled .fba file as a new version in the same GAM listing as the OS4 version?
Thanks again,
Tom
10-01-2020 14:00
10-01-2020 14:00
That's right.
10-01-2020 14:23
10-01-2020 14:23
Thank you for confirming Peter!