diff --git a/src/services/browserPlatformUtils.service.ts b/src/services/browserPlatformUtils.service.ts index d9bd172c85..d33d6e2d73 100644 --- a/src/services/browserPlatformUtils.service.ts +++ b/src/services/browserPlatformUtils.service.ts @@ -314,6 +314,11 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService } async supportsBiometric() { + const platformInfo = await BrowserApi.getPlatformInfo(); + if (platformInfo.os === 'android') { + return false; + } + if (this.isFirefox()) { return parseInt((await browser.runtime.getBrowserInfo()).version.split('.')[0], 10) >= 87; }