├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── gradle.xml ├── kotlinc.xml └── misc.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── digitalpersonasdk │ │ └── biometricscanner │ │ └── digitalpersona │ │ └── device │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── digitalpersonasdk │ │ │ └── biometricscanner │ │ │ └── digitalpersona │ │ │ └── device │ │ │ ├── Adapter_File.java │ │ │ ├── MainActivity.java │ │ │ ├── Scanned_Saved_Activity.java │ │ │ └── Scanner_Activity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── btn_shap_round.xml │ │ ├── cart.png │ │ ├── email.png │ │ ├── exit.png │ │ ├── fingerprint_blue.xml │ │ ├── home.xml │ │ ├── ic_baseline_fingerprint_24.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_more_apps.xml │ │ ├── ic_outline_save_24.xml │ │ ├── ic_privacy_icon.xml │ │ ├── ic_rate_us.xml │ │ ├── input.xml │ │ ├── menub.png │ │ ├── more.xml │ │ ├── rounded_icon.png │ │ ├── settings.xml │ │ ├── shap_drawer.xml │ │ ├── shap_exit.xml │ │ ├── share.xml │ │ └── toppic.png │ │ ├── font │ │ ├── bahnschrift.ttf │ │ ├── baloo.ttf │ │ ├── font.otf │ │ ├── font_bold.ttf │ │ ├── font_light.ttf │ │ ├── franklin_gothic_regular.ttf │ │ ├── googlesans_light.ttf │ │ ├── googlesans_medium.ttf │ │ ├── googlesans_regular.ttf │ │ ├── lato.ttf │ │ ├── lato_bold.ttf │ │ ├── lato_light.ttf │ │ ├── lato_regular.ttf │ │ ├── lato_semibold.ttf │ │ ├── poppins_regular.ttf │ │ ├── poppins_semi_bold.ttf │ │ ├── roboto_b.ttf │ │ ├── roboto_bold.ttf │ │ ├── roboto_light.ttf │ │ ├── roboto_medium.ttf │ │ ├── roboto_reg.ttf │ │ └── roboto_regular.ttf │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── dialog_email.xml │ │ ├── dialog_exit.xml │ │ ├── dialog_input.xml │ │ ├── dialog_save.xml │ │ ├── dialog_viewer.xml │ │ ├── my_drawer.xml │ │ ├── row_files.xml │ │ ├── scanned_saved_activity.xml │ │ └── scanner_activity.xml │ │ ├── menu │ │ └── option_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── digitalpersonasdk │ └── biometricscanner │ └── digitalpersona │ └── device │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/androidTest/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/Adapter_File.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/Adapter_File.java -------------------------------------------------------------------------------- /app/src/main/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/Scanned_Saved_Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/Scanned_Saved_Activity.java -------------------------------------------------------------------------------- /app/src/main/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/Scanner_Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/Scanner_Activity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_shap_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/btn_shap_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/cart.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/email.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/exit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/fingerprint_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/fingerprint_blue.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/home.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_fingerprint_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/ic_baseline_fingerprint_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_more_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/ic_more_apps.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outline_save_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/ic_outline_save_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_privacy_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/ic_privacy_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_rate_us.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/ic_rate_us.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/input.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/menub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/menub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/more.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/rounded_icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shap_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/shap_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shap_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/shap_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/toppic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/drawable/toppic.png -------------------------------------------------------------------------------- /app/src/main/res/font/bahnschrift.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/bahnschrift.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/baloo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/baloo.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/font.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/font.otf -------------------------------------------------------------------------------- /app/src/main/res/font/font_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/font_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/font_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/font_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/franklin_gothic_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/franklin_gothic_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/googlesans_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/googlesans_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/googlesans_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/googlesans_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/googlesans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/googlesans_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/lato.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/lato_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/lato_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/lato_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/lato_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/lato_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/lato_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/lato_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/lato_semibold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/poppins_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_semi_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/poppins_semi_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_b.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/roboto_b.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/roboto_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/roboto_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/roboto_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_reg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/roboto_reg.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/font/roboto_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/dialog_email.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/dialog_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/dialog_input.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/dialog_save.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/dialog_viewer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/my_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/my_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/row_files.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scanned_saved_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/scanned_saved_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/scanner_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/layout/scanner_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/option_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/menu/option_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/app/src/test/java/com/digitalpersonasdk/biometricscanner/digitalpersona/device/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadullahpk/Finger-Print-Scanner-SDK-Android-For-Digital-Persona-Device/HEAD/settings.gradle --------------------------------------------------------------------------------