Fit developer field recorded but not displayed on Garmin Connect Activity

Former Member
Former Member
I uploaded an app called FitFieldTester to the App store to experiment with capturing Fit developer fields. Using FitSDK, I can confirm that the developer field is present in the Fit file I downloaded from Garmin Connect. However, I don't see a graph for the field when I open the activity in Garmin Connect. Aside from the application ID and field ID, is there anything else that needs to match between the Fit file and the resource files on the app uploaded to the app store? Anything I might be missing or any issues with the source code below?

Thanks
Jesus

App store URL: https://apps.garmin.com/en-US/apps/784c53d6-63e7-48d6-9638-007357b76658.

Activity URL: https://connect.garmin.com/modern/activity/1374850024


---------------------------------------------------------

if (app.units == FEET) {
app.depthField = session.createField("Depth", 0, FitContributor.DATA_TYPE_FLOAT,
{ :mesgType=>FitContributor.MESG_TYPE_RECORD, :units=>"Feet" });
} else {
app.depthField = session.createField("Depth", 1, FitContributor.DATA_TYPE_FLOAT,
{ :mesgType=>FitContributor.MESG_TYPE_RECORD, :units=>"Meters" });
}

---------------------------------------------------------

<fitContributions>
<fitField id="0" displayInChart="true" sortOrder = "0" precision="2"
chartTitle="@Strings.Depth" dataLabel="@Strings.Depth"
unitLabel="@Strings.Feet" fillColor="#FF0000" />

<fitField id="1" displayInChart="true" sortOrder = "1" precision="2"
chartTitle="@Strings.Depth" dataLabel="@Strings.Depth"
unitLabel="@Strings.Meters" fillColor="#FF0000" />
</fitContributions>

-------------------------------------------------------------