Android KTX, Architecture components help you design robust, testable and maintainable apps.Navigation Handle everything needed for in-app navigation ViewModel Manage UI-related data in a lifecycle-conscious way Data Binding Decoratively bind observable data to UI elements Write more concise, idiomatic Kotlin code Room Fluent SQLite database access Lifecycle Manage your activity and fragment lifecycle
This Android project showcases a comprehensive example of integrating cryptography, biometrics, and the MVVM architecture.
Explore the cryptography key example in the following package:
/src/main/java/cryptography/biometric/biometrickit
A reusable biometric module is located at:
/src/main/java/cryptography/biometric/biometrickit
The fragment handling authentication, sign, and signature verification is available at:
/src/main/java/cryptography/biometric/ui/biometric/BiometricCryptographyPaymentFragment.kt
Dependency injection is handled in the following package:
/src/main/java/cryptography/biometric/di
Data source classes are implemented in:
/src/main/java/cryptography/biometric/data/source
The project adheres to the MVVM (Model-View-ViewModel) architectural pattern, providing a clear separation of concerns and promoting maintainability.
The application utilizes Dagger 2 for dependency injection. Key components include:
CryptographyRepository
.Subcomponents for specific features include:
To get started with this project, clone the repository and open it in Android Studio.
Explore the various components, follow the package structure,
and leverage the implemented design patterns in your own projects.