https://github.com/evant/android-biometrics-compat-issue
A sample implementation of the androidx biometric compat lib with all the workarounds needed for a production app
https://github.com/evant/android-biometrics-compat-issue
Last synced: about 1 year ago
JSON representation
A sample implementation of the androidx biometric compat lib with all the workarounds needed for a production app
- Host: GitHub
- URL: https://github.com/evant/android-biometrics-compat-issue
- Owner: evant
- License: mit
- Created: 2018-11-10T01:22:57.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2020-08-14T16:16:36.000Z (almost 6 years ago)
- Last Synced: 2025-04-01T14:45:57.153Z (about 1 year ago)
- Language: Kotlin
- Homepage:
- Size: 146 KB
- Stars: 16
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Biometric Sample
A sample implementation of the androidx biometric compat lib with all the workarounds needed for a
production app. [MainActivity.kt](app/src/main/java/me/tatarka/biometricssample/MainActivity.kt)
includes the logic to show the biometric prompt both at startup and on the click of a button.
[Cyrpto.kt](app/src/main/java/me/tatarka/biometricssample/Crypto.kt) handles encrypting and
decrypting data using asymmetric encryption. Both are heavily commented.