6. SDK Status Updates
import { addSdkStatusUpdateListener } from '@sentiance-react-native/core';
// Add a listener to start getting notified of SDK status updates,
// which lets you know if SDK detections are properly running, or if not, then why.
addSdkStatusUpdateListener((sdkStatus) => {
// Check sdkStatus.detectionStatus to determine whether detections are
// running, and if not, check the various status fields to see what
// might be blocking the detections.
});Last updated