Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Errbit | 4,202 | 158 | 10 | 5 months ago | 7 | February 26, 2016 | 63 | mit | Ruby | |
The open source error catcher that's Airbrake API compliant | ||||||||||
Soter | 1,825 | 7 months ago | 48 | other | Java | |||||
A secure and quick biometric authentication standard and platform in Android held by Tencent. | ||||||||||
React Native Touch Id | 1,425 | 113 | 11 | 3 months ago | 29 | February 15, 2019 | 116 | Java | ||
React Native authentication with the native Touch ID popup. | ||||||||||
React Native Fingerprint Scanner | 831 | 27 | 2 | 23 days ago | 30 | June 20, 2020 | 70 | Java | ||
Provide Fingerprint, Touch ID, and Face ID Scanner for React Native (Compatible with both Android and iOS) | ||||||||||
Biometricauthentication | 714 | 9 | 2 years ago | 15 | October 14, 2020 | 7 | mit | Swift | ||
Use Apple FaceID or TouchID authentication in your app using BiometricAuthentication. | ||||||||||
Larapass | 579 | 9 months ago | 10 | November 01, 2021 | mit | PHP | ||||
Authenticate users with just their device, fingerprint or biometric data. Goodbye passwords! | ||||||||||
Fingerprintmanager | 551 | 4 years ago | 7 | mit | Kotlin | |||||
A small library to handle Android fingerprint API. | ||||||||||
Reprint | 466 | 2 years ago | apache-2.0 | Java | ||||||
A unified fingerprint library for android. | ||||||||||
Rxfingerprint | 370 | 4 years ago | 28 | apache-2.0 | Java | |||||
Android Fingerprint authentication and encryption with RxJava | ||||||||||
Cordova Plugin Fingerprint Aio | 293 | 43 | 3 | 7 days ago | 65 | December 22, 2021 | 52 | mit | Java | |
Cordova Plugin for fingerprint sensors (and FaceID) with Android and iOS support |
Simple and beautiful Lock Screen library to set an check pin code. Integrated with fingerprint authentication.
Easily secure your app with Lock Screen library as easy as starting an intent.
With great animations for fingerprint authentication.
Set Pin:
Check Pin:
Lock Screen gets a 4 digit pincode from user at first running time. After that every time that you start the intent, It asks
for pincode.
Watching this repository will allow GitHub to email you whenever I publish a release.
Add this line to your build.gradle
project
compile 'com.amirarcane.lock-screen:lockscreen:2.0.0'
Just add Lock Screen activity to your manifest:
<activity android:name="com.amirarcane.lockscreen.activity.EnterPinActivity"
android:theme="@style/Theme.AppCompat.NoActionBar"/>
Now easily start the Intent:
Intent intent = new Intent(getContext(), EnterPinActivity.class);
startActivity(intent);
That's it. As easy as piece of cake.
At first run It checks if you entered pin before or not, If pin was set, It asks for Entering pin else It asks for setting pincode. If you need to change pin or for any reason you want to set pin again just start the intent like below:
Intent intent = EnterPinActivity.getIntent(getContext(), SET_PIN);
startActivity(intent);
SET_PIN is boolean.
If you need to handle back press of Lock Screen activity, just try onActivityResult:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case REQUEST_CODE:
if (resultCode == EnterPinActivity.RESULT_BACK_PRESSED) {
Toast.makeText(MainActivity.this, "back pressed", Toast.LENGTH_LONG).show();
}
break;
}
}
See MainActivity class in Sample app for understanding how this library works.
If you need to set font for this library try like below:
Intent intent = EnterPinActivity.getIntent(getContext(), FONT_TEXT, FONT_NUMBERS);
startActivity(intent);
FONT_TEXT and FONT_NUMBERS are path of your fonts in assets folder like "font/Arial.ttf"
IF need set pin and changing fonts, do this:
Intent intent = EnterPinActivity.getIntent(getContext(), SET_PIN, FONT_TEXT, FONT_NUMBERS);
startActivity(intent);
I customized PinLockView by andrognito for my Lock Screen view. In case of any further customization, fork the library and change it.