Open
Description
The following code (from the docs) triggers the fingerprint auth in Android while in iOs does not triggers (correctly) the Face ID.
Using v6 @next
I did expect a validation to retrieve the data, but not to store it for first time. Is it right? what is the expectation?
import SInfo from 'react-native-sensitive-info';
const savingFirstData = await SInfo.setItem('key1', 'value1', {
sharedPreferencesName: 'mySharedPrefs',
keychainService: 'myKeychain',
touchID: true, //add this key
showModal: true, //add this key
kSecAccessControl: 'kSecAccessControlBiometryAny' // optional - Add support for FaceID
});