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
Copy file name to clipboardExpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,11 @@
9
9
- Secure authentication is the key factor in many application (e.g. financial applications). Many application uses PIN-based authentication.
10
10
- But Android System doesn't provide any easy to set the view for PIN-based authentication which can tightly integrate and take advantage of fingerprint API introduced in newer versions of android. This limitation led me to work on this project.
11
11
12
-
- With the use of *PasscodeView* you can easily integrate PIN & Fingerprint based authentication in your application.
12
+
- With the use of *PasscodeView*, you can easily integrate PIN & Fingerprint based authentication in your application.
13
13
14
14
15
15
## Features:
16
-
This library provide easy and secure PIN authentication view, which
16
+
This library provides easy and secure PIN authentication view, which
17
17
- provides access to built-in fingerprint-based authentication. This handles all the complexities of integrating the fingerprint API with your application.
18
18
- provide error feedback when PIN entered is wrong.
19
19
- is highly customizable. So that you can match it with your application them. It provides you control over,
@@ -22,7 +22,7 @@ This library provide easy and secure PIN authentication view, which
22
22
* size of the each single key.
23
23
* color and shape of pin indicators.👉 [Guide](https://github.com/kevalpatel2106/PasscodeView/wiki/Indicators)
24
24
* Control over tactile feedback for key press and authentication success/failure events.
25
-
* Authenticate using using the pattern.
25
+
* Authenticate using the pattern.
26
26
27
27
## Demo:
28
28
**Authentication using PIN/Fingerprint**
@@ -92,7 +92,7 @@ This library provide easy and secure PIN authentication view, which
92
92
```
93
93
94
94
-### Set the shape of the key you want to use.
95
-
- There are three builtin key shapes. You can also generate your own key by extending [`Key`](https://github.com/kevalpatel2106/PasscodeView/blob/master/passcodeview/src/main/java/com/kevalpatel/passcodeview/keys/Key.java) class.
95
+
- There are three built-in key shapes. You can also generate your own key by extending [`Key`](https://github.com/kevalpatel2106/PasscodeView/blob/master/passcodeview/src/main/java/com/kevalpatel/passcodeview/keys/Key.java) class.
96
96
* Round key
97
97
* Rectangle key
98
98
* Square key
@@ -152,7 +152,7 @@ This library provide easy and secure PIN authentication view, which
152
152
```
153
153
154
154
- ### Set key names.
155
-
-Set the texts to display on different keys. This is optional step. If you don't set the key names, by default `PINView` will display English locale digits.
155
+
-Set the texts to display on different keys. This is an optional step. If you don't set the key names, by default `PINView` will display English locale digits.
156
156
- If you want to learn more about key name localization visit [here](https://github.com/kevalpatel2106/PasscodeView/wiki/Add-localized-key-names).
157
157
```java
158
158
@Override
@@ -184,7 +184,7 @@ This library provide easy and secure PIN authentication view, which
184
184
}
185
185
```
186
186
187
-
- ### Set callback listener to get callbacks when user is authenticated or authentication fails.
187
+
- ### Set callback listener to get callbacks when the user is authenticated or authentication fails.
0 commit comments