├── .gitignore ├── LICENSE ├── README.md ├── changelog.md ├── index.d.ts ├── package.json ├── plugin.xml ├── res └── android │ ├── drawable-hdpi │ └── ic_fp_40px.png │ ├── drawable-mdpi │ └── ic_fp_40px.png │ ├── drawable-nodpi │ └── android_robot.png │ ├── drawable-xhdpi │ └── ic_fp_40px.png │ ├── drawable-xxhdpi │ └── ic_fp_40px.png │ ├── drawable-xxxhdpi │ └── ic_fp_40px.png │ ├── drawable │ ├── ic_fingerprint_error.xml │ └── ic_fingerprint_success.xml │ ├── layout │ ├── fingerprint_dialog_container.xml │ └── fingerprint_dialog_content.xml │ ├── values-ar │ └── fpauth-strings.xml │ ├── values-de │ └── fpauth-strings.xml │ ├── values-es │ └── fpauth-strings.xml │ ├── values-fr │ └── fpauth-strings.xml │ ├── values-it │ └── fpauth-strings.xml │ ├── values-ja │ └── fpauth-strings.xml │ ├── values-ko │ └── fpauth-strings.xml │ ├── values-no │ └── fpauth-strings.xml │ ├── values-pt │ └── fpauth-strings.xml │ ├── values-ru │ └── fpauth-strings.xml │ ├── values-th │ └── fpauth-strings.xml │ ├── values-zh-rCN │ └── fpauth-strings.xml │ ├── values-zh-rHK │ └── fpauth-strings.xml │ ├── values-zh-rMO │ └── fpauth-strings.xml │ ├── values-zh-rSG │ └── fpauth-strings.xml │ ├── values-zh-rTW │ └── fpauth-strings.xml │ ├── values-zh │ └── fpauth-strings.xml │ └── values │ ├── fpauth-colors.xml │ └── fpauth-strings.xml ├── screenshots ├── confirm_creds_pattern.png ├── confirm_creds_pin.png ├── confirm_creds_pw.png ├── fp_auth_dialog.jpg ├── fp_auth_dialog_fail.jpg ├── fp_auth_dialog_longer.png ├── fp_auth_dialog_no_backup.jpg ├── fp_auth_dialog_success.png └── fp_auth_dialog_too_many.jpg ├── src └── android │ ├── FingerprintAuth.java │ ├── FingerprintAuthenticationDialogFragment.java │ └── FingerprintUiHelper.java └── www └── FingerprintAuth.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/changelog.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/plugin.xml -------------------------------------------------------------------------------- /res/android/drawable-hdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/drawable-hdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /res/android/drawable-mdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/drawable-mdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /res/android/drawable-nodpi/android_robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/drawable-nodpi/android_robot.png -------------------------------------------------------------------------------- /res/android/drawable-xhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/drawable-xhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /res/android/drawable-xxhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/drawable-xxhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /res/android/drawable-xxxhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/drawable-xxxhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /res/android/drawable/ic_fingerprint_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/drawable/ic_fingerprint_error.xml -------------------------------------------------------------------------------- /res/android/drawable/ic_fingerprint_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/drawable/ic_fingerprint_success.xml -------------------------------------------------------------------------------- /res/android/layout/fingerprint_dialog_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/layout/fingerprint_dialog_container.xml -------------------------------------------------------------------------------- /res/android/layout/fingerprint_dialog_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/layout/fingerprint_dialog_content.xml -------------------------------------------------------------------------------- /res/android/values-ar/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-ar/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-de/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-de/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-es/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-es/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-fr/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-fr/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-it/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-it/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-ja/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-ja/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-ko/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-ko/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-no/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-no/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-pt/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-pt/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-ru/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-ru/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-th/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-th/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-zh-rCN/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-zh-rCN/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-zh-rHK/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-zh-rHK/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-zh-rMO/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-zh-rMO/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-zh-rSG/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-zh-rSG/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-zh-rTW/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-zh-rTW/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values-zh/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values-zh/fpauth-strings.xml -------------------------------------------------------------------------------- /res/android/values/fpauth-colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values/fpauth-colors.xml -------------------------------------------------------------------------------- /res/android/values/fpauth-strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/res/android/values/fpauth-strings.xml -------------------------------------------------------------------------------- /screenshots/confirm_creds_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/confirm_creds_pattern.png -------------------------------------------------------------------------------- /screenshots/confirm_creds_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/confirm_creds_pin.png -------------------------------------------------------------------------------- /screenshots/confirm_creds_pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/confirm_creds_pw.png -------------------------------------------------------------------------------- /screenshots/fp_auth_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/fp_auth_dialog.jpg -------------------------------------------------------------------------------- /screenshots/fp_auth_dialog_fail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/fp_auth_dialog_fail.jpg -------------------------------------------------------------------------------- /screenshots/fp_auth_dialog_longer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/fp_auth_dialog_longer.png -------------------------------------------------------------------------------- /screenshots/fp_auth_dialog_no_backup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/fp_auth_dialog_no_backup.jpg -------------------------------------------------------------------------------- /screenshots/fp_auth_dialog_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/fp_auth_dialog_success.png -------------------------------------------------------------------------------- /screenshots/fp_auth_dialog_too_many.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/screenshots/fp_auth_dialog_too_many.jpg -------------------------------------------------------------------------------- /src/android/FingerprintAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/src/android/FingerprintAuth.java -------------------------------------------------------------------------------- /src/android/FingerprintAuthenticationDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/src/android/FingerprintAuthenticationDialogFragment.java -------------------------------------------------------------------------------- /src/android/FingerprintUiHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/src/android/FingerprintUiHelper.java -------------------------------------------------------------------------------- /www/FingerprintAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjwheatley/cordova-plugin-android-fingerprint-auth/HEAD/www/FingerprintAuth.js --------------------------------------------------------------------------------