├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── Art ├── auth_pref.png ├── bio_metric.png ├── error_handling.png ├── home.png ├── inavlid_tempt.png ├── login.png ├── max_attempts.png └── sucess.png ├── LICENSE ├── README.md ├── android ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ ├── Hitesh.xml │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── libraries │ │ ├── android_jsc_r174650.xml │ │ ├── animated_vector_drawable_25_3_1.xml │ │ ├── appcompat_v7_25_3_1.xml │ │ ├── bolts_tasks_1_4_0.xml │ │ ├── cardview_v7_25_3_1.xml │ │ ├── drawee_1_0_1.xml │ │ ├── fbcore_1_0_1.xml │ │ ├── fresco_1_0_1.xml │ │ ├── imagepipeline_1_0_1.xml │ │ ├── imagepipeline_base_1_0_1.xml │ │ ├── imagepipeline_okhttp3_1_0_1.xml │ │ ├── javax_inject_1.xml │ │ ├── jsr305_3_0_0.xml │ │ ├── okhttp_3_6_0.xml │ │ ├── okhttp_urlconnection_3_6_0.xml │ │ ├── okio_1_13_0.xml │ │ ├── react_native_0_46_1.xml │ │ ├── soloader_0_1_0.xml │ │ ├── staticlayout_proxy_1_0.xml │ │ ├── support_annotations_25_3_1.xml │ │ ├── support_compat_25_3_1.xml │ │ ├── support_core_ui_25_3_1.xml │ │ ├── support_core_utils_25_3_1.xml │ │ ├── support_fragment_25_3_1.xml │ │ ├── support_media_compat_25_3_1.xml │ │ ├── support_v13_25_3_1.xml │ │ ├── support_v4_25_3_1.xml │ │ ├── support_vector_drawable_25_3_1.xml │ │ └── textlayoutbuilder_1_0_0.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── com │ │ │ └── aproject │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ ├── domain │ │ │ └── storage │ │ │ │ ├── Decrypter.java │ │ │ │ └── Encryptor.java │ │ │ ├── modules │ │ │ ├── BioMetricReactPackage.java │ │ │ └── BiometricModule.java │ │ │ ├── utils │ │ │ ├── AppConstants.java │ │ │ ├── PreferenceHelper.java │ │ │ └── RootUtil.java │ │ │ └── view │ │ │ └── Fragments │ │ │ ├── FingerprintAuthenticationDialogFragment.java │ │ │ └── FingerprintUiHelper.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_fp_40px.png │ │ └── tile.9.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 │ │ ├── card.xml │ │ ├── ic_fingerprint_error.xml │ │ └── ic_fingerprint_success.xml │ │ ├── layout │ │ ├── fingerprint_dialog_container.xml │ │ └── fingerprint_dialog_content.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.android.js ├── index.ios.js ├── ios ├── AProject-tvOS │ └── Info.plist ├── AProject-tvOSTests │ └── Info.plist ├── AProject.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── AProject-tvOS.xcscheme │ │ └── AProject.xcscheme ├── AProject │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── AProjectTests │ ├── AProjectTests.m │ └── Info.plist ├── package.json └── src ├── BioMetric.js ├── Style.js ├── assets ├── fonts │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 └── img │ ├── app_icon.png │ ├── back_arrow.png │ ├── header.jpeg │ ├── header.jpg │ ├── login.jpeg │ ├── menu.png │ └── splash.jpeg ├── navigation └── Route.js └── scene ├── AboutPage.js ├── HomePage.js ├── LoginPage.js └── Splash.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Art/auth_pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/Art/auth_pref.png -------------------------------------------------------------------------------- /Art/bio_metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/Art/bio_metric.png -------------------------------------------------------------------------------- /Art/error_handling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/Art/error_handling.png -------------------------------------------------------------------------------- /Art/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/Art/home.png -------------------------------------------------------------------------------- /Art/inavlid_tempt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/Art/inavlid_tempt.png -------------------------------------------------------------------------------- /Art/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/Art/login.png -------------------------------------------------------------------------------- /Art/max_attempts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/Art/max_attempts.png -------------------------------------------------------------------------------- /Art/sucess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/Art/sucess.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/README.md -------------------------------------------------------------------------------- /android/.idea/.name: -------------------------------------------------------------------------------- 1 | AProject -------------------------------------------------------------------------------- /android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/.idea/copyright/Hitesh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/copyright/Hitesh.xml -------------------------------------------------------------------------------- /android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/gradle.xml -------------------------------------------------------------------------------- /android/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /android/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /android/.idea/libraries/android_jsc_r174650.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/android_jsc_r174650.xml -------------------------------------------------------------------------------- /android/.idea/libraries/animated_vector_drawable_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/animated_vector_drawable_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/appcompat_v7_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/appcompat_v7_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/bolts_tasks_1_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/bolts_tasks_1_4_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/cardview_v7_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/cardview_v7_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/drawee_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/drawee_1_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/fbcore_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/fbcore_1_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/fresco_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/fresco_1_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/imagepipeline_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/imagepipeline_1_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/imagepipeline_base_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/imagepipeline_base_1_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/imagepipeline_okhttp3_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/imagepipeline_okhttp3_1_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/javax_inject_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/javax_inject_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/jsr305_3_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/jsr305_3_0_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okhttp_3_6_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/okhttp_3_6_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okhttp_urlconnection_3_6_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/okhttp_urlconnection_3_6_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okio_1_13_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/okio_1_13_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/react_native_0_46_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/react_native_0_46_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/soloader_0_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/soloader_0_1_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/staticlayout_proxy_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/staticlayout_proxy_1_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_annotations_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_annotations_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_compat_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_compat_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_core_ui_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_core_ui_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_core_utils_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_core_utils_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_fragment_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_fragment_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_media_compat_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_media_compat_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_v13_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_v13_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_v4_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_v4_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_vector_drawable_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/support_vector_drawable_25_3_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/textlayoutbuilder_1_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/libraries/textlayoutbuilder_1_0_0.xml -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/modules.xml -------------------------------------------------------------------------------- /android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/.idea/workspace.xml -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/domain/storage/Decrypter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/domain/storage/Decrypter.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/domain/storage/Encryptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/domain/storage/Encryptor.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/modules/BioMetricReactPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/modules/BioMetricReactPackage.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/modules/BiometricModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/modules/BiometricModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/utils/AppConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/utils/AppConstants.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/utils/PreferenceHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/utils/PreferenceHelper.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/utils/RootUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/utils/RootUtil.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/view/Fragments/FingerprintAuthenticationDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/view/Fragments/FingerprintAuthenticationDialogFragment.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/aproject/view/Fragments/FingerprintUiHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/java/com/aproject/view/Fragments/FingerprintUiHelper.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable-hdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/tile.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable-hdpi/tile.9.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable-mdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-nodpi/android_robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable-nodpi/android_robot.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable-xhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_fp_40px.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable/card.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_fingerprint_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable/ic_fingerprint_error.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_fingerprint_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/drawable/ic_fingerprint_success.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fingerprint_dialog_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/layout/fingerprint_dialog_container.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fingerprint_dialog_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/layout/fingerprint_dialog_content.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/AProject-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/AProject-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/AProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/AProject.xcodeproj/xcshareddata/xcschemes/AProject-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject.xcodeproj/xcshareddata/xcschemes/AProject-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/AProject.xcodeproj/xcshareddata/xcschemes/AProject.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject.xcodeproj/xcshareddata/xcschemes/AProject.xcscheme -------------------------------------------------------------------------------- /ios/AProject/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject/AppDelegate.h -------------------------------------------------------------------------------- /ios/AProject/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject/AppDelegate.m -------------------------------------------------------------------------------- /ios/AProject/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/AProject/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/AProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject/Info.plist -------------------------------------------------------------------------------- /ios/AProject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProject/main.m -------------------------------------------------------------------------------- /ios/AProjectTests/AProjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProjectTests/AProjectTests.m -------------------------------------------------------------------------------- /ios/AProjectTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/ios/AProjectTests/Info.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/package.json -------------------------------------------------------------------------------- /src/BioMetric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/BioMetric.js -------------------------------------------------------------------------------- /src/Style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/Style.js -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /src/assets/img/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/img/app_icon.png -------------------------------------------------------------------------------- /src/assets/img/back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/img/back_arrow.png -------------------------------------------------------------------------------- /src/assets/img/header.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/img/header.jpeg -------------------------------------------------------------------------------- /src/assets/img/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/img/header.jpg -------------------------------------------------------------------------------- /src/assets/img/login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/img/login.jpeg -------------------------------------------------------------------------------- /src/assets/img/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/img/menu.png -------------------------------------------------------------------------------- /src/assets/img/splash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/assets/img/splash.jpeg -------------------------------------------------------------------------------- /src/navigation/Route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/navigation/Route.js -------------------------------------------------------------------------------- /src/scene/AboutPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/scene/AboutPage.js -------------------------------------------------------------------------------- /src/scene/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/scene/HomePage.js -------------------------------------------------------------------------------- /src/scene/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/scene/LoginPage.js -------------------------------------------------------------------------------- /src/scene/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshsahu/FingerPrint-Authentication-With-React-Native-Android/HEAD/src/scene/Splash.js --------------------------------------------------------------------------------