You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The example says to use const auth = new FingerPrintAuth(); data = await auth.available(); const has = data.has; const faceId = data.face; const touchId = data.touch;
But these properties do not exist. The Available options interface has:
The example says to use
const auth = new FingerPrintAuth();
data = await auth.available();
const has = data.has;
const faceId = data.face;
const touchId = data.touch;
But these properties do not exist. The Available options interface has:
export interface AvailableOptions {
has: boolean;
faceId: boolean;
touchId: boolean;
}
When logging the result the output of
faceId
andtouchId
is undefined.Manually editing the interface solves the problem but I have to do this every time I install my packages while building on Microsoft's App Center.
As for the
IPHONEOS_DEPLOYMENT_TARGET
when I install using npm it is still set to 10.0 even though it's been updated here.The text was updated successfully, but these errors were encountered: