Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Python Validity | 556 | 9 months ago | 74 | mit | Python | |||||
Validity fingerprint sensor prototype | ||||||||||
Xamarin Fingerprint | 402 | 17 | 8 | a year ago | 47 | May 04, 2022 | 46 | ms-pl | C# | |
Xamarin and MvvMCross plugin for authenticate a user via fingerprint sensor | ||||||||||
Rxfingerprint | 370 | 4 years ago | 28 | apache-2.0 | Java | |||||
Android Fingerprint authentication and encryption with RxJava | ||||||||||
Adafruit Fingerprint Sensor Library | 330 | 7 months ago | 11 | other | C++ | |||||
Arduino library for interfacing to the fingerprint sensor in the Adafruit shop | ||||||||||
Fingerprint2sleep | 244 | a year ago | 31 | Kotlin | ||||||
Perform quick actions via tap fingerprint sensor. | ||||||||||
Validity91 | 212 | 4 years ago | 6 | bsd-3-clause | Python | |||||
Reverse engineering the Validity 138a:0091 fingerprint sensor (Dell XPS 15/13 2016-2017 9X50 and 9X60) | ||||||||||
Pyfingerprint | 146 | 2 years ago | 2 | October 31, 2019 | 14 | other | Python | |||
Python library for ZhianTec fingerprint sensors (e.g. ZFM-20, ZFM-60) | ||||||||||
Libfprint | 117 | 3 years ago | 6 | lgpl-2.1 | C | |||||
libfrpint driver for a family of Elantech fingerprint sensors | ||||||||||
Goodix92 | 80 | 3 years ago | ||||||||
Project aiming to reverse engineer Dell XPS 9570 fingerprint sensor (27c6:5395) | ||||||||||
Droidid | 78 | 6 years ago | 8 | gpl-3.0 | Objective-C | |||||
DroidID - Unlock your Mac using your Android phone's fingerprint sensor! |
Security screen using fingerprint or pin code.
Some Android devices do not have a fingerprint sensor. It is used for two different devices. For those with fingerprint sensors and those without.
For phones that do not have a fingerprint sensor | For devices with a fingerprint sensor | Fingerprint sensor for those who want to use the pincode. |
---|---|---|
![]() |
![]() |
![]() |
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
.....
dependencies {
implementation 'com.github.fevziomurtekin:lockscreen:0.1.1'
}
}
Include in the activity
public class MainActivity extends LookScreen {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setPass("1234");
this.setDigitCount(4);
this.setIntent(new Intent(this,SuccesActivity.class));
this.setDigitCount(4);
this.setTitle("YOUR TITLE MESSAGE");
this.setTitleSize(15f);
this.setTitleColor(getResources().getColor(R.color.black));
this.setMessage("YOUR MESSAGE");
this.setMessageSize(14f);
this.setMessageColor(getResources().getColor(R.color.black));
this.setError("YOUR ERROR MESSAGE");
this.setErrorSize(14f);
this.setErrorColor(getResources().getColor(R.color.red));
}
}
Attribute | Description |
---|---|
title |
Default text, "Enter your password. " |
titleSize |
The size in sp of the title text size (by default 15sp) |
titleColor |
The color in int of the title text color (R.color.black) |
message |
The value in string of the message items (by default "Log in with your password or fingerprint reader.") |
messageSize |
The size in sp of the message text size (by default 14sp) |
messageColor |
The color in int of the title text color (R.color.black) |
error |
The value in string of the error items (by default "You entered an incorrect password. Please try again.") |
errorSize |
The size in sp of the title text size (by default 14sp) |
errorColor |
The color in int of the title text color (R.color.red) |
intent |
It is for transferring to another class when successfully logged in |
pass |
The value in string of the password items (by default "1234") |
Copyright 2018 Fevzi Ömür Tekin
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.