For the complete documentation index, see llms.txt. This page is also available as Markdown.

Why is no Samsung Health data syncing after I connected?

Samsung Health is a mobile-SDK integration read through Health Connect (Samsung writes into Health Connect, the SDK reads from there), so there is no…

Samsung Health is a mobile-SDK integration read through Health Connect (Samsung writes into Health Connect, the SDK reads from there), so there is no server-side pull. The dashboard 'Get Data' button being greyed out, empty console scopes, and the 'SDK Only' warning are all expected.

Health Connect forbids background syncing, so data only arrives when your app is in the foreground and explicitly requests it via getter calls (getDaily, getActivity, etc.) with the scheduler enabled at Terra init.

To debug:

1

Confirm initConnection returns success=true.

2

Verify your app appears in Health Connect's recent access list.

3

Confirm both the source app and your app have permission for each relevant data type in Health Connect (missing permissions silently return empty).

4

Check that data actually appears in the Health Connect app, since Samsung Health does not always write steps, exercise or sleep there.

5

Test with manual getDaily / getActivity calls.

Users can force a sync by opening Samsung Health or Health Connect and pulling to refresh. For more reliable delivery, use Terra's direct Samsung Health route, which bypasses Health Connect. See the mobile-only sources docs for setup.

Last updated

Was this helpful?