No data in my Garmin Connect APP (Mobile)

Hello Comunity,

I am trying to visualize the data taken from the sensor in my mobile app. For this, I have upload the app (beta version) in the store, and then install it in my Device Garmin. I have ran few tests and the data is registered in the fit file. However, when I tried to visualize in the statistics of the mobile app, the measurements are not there. 

Is there anyone else who has experienced the same issue before? 

Looking forward to hearing from you soon. 

  • Do you have the xml file with fitcontribs to let garmin connect know what to do with the data?  This is why an app with fitcontrib needs to be in the store, so garmin connect can get that data.

    Here's a really simple example, where I have only one field:

    <resources>
        <strings>
        	<string id="temp_label">Temp</string>
        	<string id="temp_units">F</string>
        	<string id="temp_title">piTemp</string>
        </strings>
        
         <fitContributions>
            <fitField id="0" displayInChart="true" chartTitle="@Strings.temp_title" fillColor="ff0000" sortOrder = "1" precision="2" displayInActivityLaps="false"
            dataLabel="@Strings.temp_label"
            unitLabel="@Strings.temp_units"/>
         </fitContributions>
    </resources>

  • Thanks my friend. Yesterday I was playing around with another example project and exactly, that file was missing.