Usage: User initialization
Set and configure a user for data synchronization.
Update userID
Update the userID:
void updateUserID() {
RookSamsung.updateUserID(userID).then((_) {
// Success
}).catchError((exception) {
// Handle error
});
}
Any call to updateUserID with a different userID will override the previous userID and reset the sync status, so if
you are using Automatic Sync all health data will synchronize again.
Login / Logout
The updateUserID function should be called as part of your login and initialization process.
When your users logout from your app, you'll have two options:
- Call
clearUserIDto remove the userID from SDK. deleteUserFromRookto remove the userID from SDK and disable it in server (Only disable from Samsung Health data source).
Recommended user update procedure
If you have previously called updateUserID and the app is restarted (closed and opened), you won't have to
call updateUserID again.
After initializing, call getUserID to verify that the userID was autoconfigured (
recovered from storage).
void checkUserIDRegistered() {
RookSamsung.getUserID().then((userID) {
if (userID != null) {
// userID was autoconfigured (recovered from preferences), no need to call RookSamsung.updateUserID()
} else {
// userID wasn't autoconfigured (recovered from preferences), MUST call RookSamsung.updateUserID()
}
});
}
User timezone
Every time updateUserID completes successfully, the timezone information will be updated. You can see the result of
the operation in the logs. On success, you will see Timezone information updated; otherwise, you will
see Failed to update timezone information with error:.
In most cases, the above behavior is sufficient. If you need to update the timezone information manually,
call syncUserTimeZone:
void updateTimeZoneInformation() {
RookSamsung.syncUserTimeZone().then((_) {
// Success
}).catchError((exception) {
// Handle error
});
}