Overview
MobiWeb injects JavaScript bridge objects into your page at document start. The bridge API differs slightly between Android and iOS. Use platform detection to call the correct bridge, or use the unified patterns shown in each section.
const isAndroid = typeof AndroidBiometric !== 'undefined';
const isIOS = typeof AppleBiometric !== 'undefined';
const isMobiWeb = isAndroid || isIOS;
03 May 2026