Skip to content

Commit

Permalink
Added support for the vivoactive 5
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp-meier committed Jan 21, 2024
1 parent 9bf9e2d commit 534fe07
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
33 changes: 17 additions & 16 deletions manifest.xml
Original file line number Diff line number Diff line change
@@ -1,35 +1,36 @@
<?xml version="1.0"?>
<!-- This is a generated file. It is highly recommended that you DO NOT edit this file. -->
<iq:manifest version="3" xmlns:iq="http://www.garmin.com/xml/connectiq">
<?xml version="1.0"?>
<!-- This is a generated file. It is highly recommended that you DO NOT edit this file. -->
<iq:manifest version="3" xmlns:iq="http://www.garmin.com/xml/connectiq">
<!--
Use "Monkey C: Edit Application" from the Visual Studio Code command palette
to update the application attributes.
-->
<iq:application id="a90de53c-ebc5-45a9-9313-49fc9496872f" type="watchface" name="@Strings.AppName" entry="BitFaceApp" launcherIcon="@Drawables.LauncherIcon" minApiLevel="4.2.0">
-->
<iq:application id="a90de53c-ebc5-45a9-9313-49fc9496872f" type="watchface" name="@Strings.AppName" entry="BitFaceApp" launcherIcon="@Drawables.LauncherIcon" minApiLevel="4.2.0">
<!--
Use the following from the Visual Studio Code comand palette to edit
the build targets:
"Monkey C: Set Products by Product Category" - Lets you add all products
that belong to the same product category
"Monkey C: Edit Products" - Lets you add or remove any product
-->
<iq:products>
<iq:product id="fr255"/>
</iq:products>
-->
<iq:products>
<iq:product id="fr255"/>
<iq:product id="vivoactive5"/>
</iq:products>
<!--
Use "Monkey C: Edit Permissions" from the Visual Studio Code command
palette to update permissions.
-->
<iq:permissions/>
-->
<iq:permissions/>
<!--
Use "Monkey C: Edit Languages" from the Visual Studio Code command
palette to edit your compatible language list.
-->
<iq:languages/>
-->
<iq:languages/>
<!--
Use "Monkey C: Configure Monkey Barrel" from the Visual Studio Code
command palette to edit the included barrels.
-->
<iq:barrels/>
</iq:application>
-->
<iq:barrels/>
</iq:application>
</iq:manifest>
4 changes: 2 additions & 2 deletions source/BitFaceApp.mc
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class BitFaceApp extends Application.AppBase {
}

// Return the initial view of your application here
function getInitialView() as Array<Views or InputDelegates>? {
return [ new BitFaceView() ] as Array<Views or InputDelegates>;
function getInitialView() as [Views] or [Views, InputDelegates] {
return [ new BitFaceView() ];
}

}
Expand Down

0 comments on commit 534fe07

Please sign in to comment.