I've made a couple watch faces for the Fenix 5 watch family and would now like to now adapt the code for use with the Vivoactive 3 family.
Parts of my code definitely need tweaking for this specific device as text appears to be rendered differently on VA3 family.
Is there any way in my code to differentiate between watch families?
example:
if (vivoactive3 || vivoactive3m) {
doThis();
}
if (fenix5) {
doThat()
}