File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -83,12 +83,19 @@ $ react-native link react-native-fingerprint-scanner
83
83
84
84
Add the following permissions to their respective files:
85
85
86
+ #### Android
86
87
In your ` AndroidManifest.xml ` :
87
88
89
+ API level 28+ ([ Reference] ( https://developer.android.com/reference/android/Manifest.permission#USE_BIOMETRIC ) )
88
90
``` xml
89
- <uses-permission android : name =" android.permission.USE_FINGERPRINT " />
91
+ <uses-permission android : name =" android.permission.USE_BIOMETRIC " />
90
92
```
91
93
94
+ API level <28 ([ Reference] ( https://developer.android.com/reference/android/Manifest.permission#USE_FINGERPRINT ) )
95
+ ``` xml
96
+ <uses-permission android : name =" android.permission.USE_FINGERPRINT" />
97
+ ```
98
+ #### iOS
92
99
In your ` Info.plist ` :
93
100
94
101
``` xml
You can’t perform that action at this time.
0 commit comments