├── FingerPrintDemo.iml ├── LICENSE ├── README.md ├── apks └── FingerprintDemo.apk ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── createchance │ │ └── fingerprintdemo │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── createchance │ │ │ └── fingerprintdemo │ │ │ ├── CryptoObjectHelper.java │ │ │ ├── MainActivity.java │ │ │ └── MyAuthCallback.java │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fingerprint_dialog_container.xml │ │ └── fingerprint_dialog_content.xml │ │ ├── mipmap-hdpi │ │ ├── ic_fp_40px.png │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ ├── ic_fp_40px.png │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ ├── ic_fp_40px.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_fp_40px.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_fp_40px.png │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── createchance │ └── fingerprintdemo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle /FingerPrintDemo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/FingerPrintDemo.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/README.md -------------------------------------------------------------------------------- /apks/FingerprintDemo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/apks/FingerprintDemo.apk -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/createchance/fingerprintdemo/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/androidTest/java/com/createchance/fingerprintdemo/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/createchance/fingerprintdemo/CryptoObjectHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/java/com/createchance/fingerprintdemo/CryptoObjectHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/createchance/fingerprintdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/java/com/createchance/fingerprintdemo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/createchance/fingerprintdemo/MyAuthCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/java/com/createchance/fingerprintdemo/MyAuthCallback.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fingerprint_dialog_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/layout/fingerprint_dialog_container.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fingerprint_dialog_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/layout/fingerprint_dialog_content.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/createchance/fingerprintdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/app/src/test/java/com/createchance/fingerprintdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/AndroidFingerPrintDemo/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------