Appearance
Analytics
The SDK can collect usage analytics in order to improve the product. No sensitive user info or details are saved.
API
TypeScript
import {
DeviceOrientation,
SessionBuilder
} from 'biosensesignal-react-native-sdk';
try {
const session = await SessionBuilder.faceSession(
{
licenseKey: "<ENTER_YOUR_LICENSE_KEY>"
},
{
sdkAnalytics: true
}
);
} catch (e) {
const exception = (e as HealthMonitorException)
console.log(`Error: ${exception?.code}`);
}