@oiti/rn-liveness3d 4.0.0 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +1 -1
- package/android/gradle.properties +5 -5
- package/android/src/main/AndroidManifest.xml +1 -8
- package/android/src/main/java/br/com/oiti/rnliveness3d/RnLiveness3dModule.kt +218 -192
- package/android/src/main/java/br/com/oiti/rnliveness3d/RnLiveness3dPackage.kt +25 -8
- package/android/src/main/java/br/com/oiti/rnliveness3d/theme/Liveness3DFonts.kt +32 -38
- package/android/src/main/java/br/com/oiti/rnliveness3d/theme/Liveness3DText.kt +5 -3
- package/android/src/main/java/br/com/oiti/rnliveness3d/theme/Liveness3DTheme.kt +229 -147
- package/android/src/res/font/sixty.ttf +0 -0
- package/ios/Podfile +1 -1
- package/ios/Pods/Manifest.lock +34 -22
- package/ios/RnLiveness3d.h +5 -0
- package/ios/RnLiveness3d.mm +72 -0
- package/ios/{RnLiveness3d.swift → RnLiveness3dSwiftModule.swift} +131 -132
- package/lib/commonjs/@types/ArgsType.js.map +1 -1
- package/lib/commonjs/@types/FontsType.js.map +1 -1
- package/lib/commonjs/@types/ResultType.js.map +1 -1
- package/lib/commonjs/@types/ResultTypes.js.map +1 -1
- package/lib/commonjs/@types/TextsType.js.map +1 -1
- package/lib/commonjs/@types/ThemeType.js.map +1 -1
- package/lib/commonjs/NativeRnLiveness3d.js +9 -0
- package/lib/commonjs/NativeRnLiveness3d.js.map +1 -0
- package/lib/commonjs/actions/BackButton.js +6 -8
- package/lib/commonjs/actions/BackButton.js.map +1 -1
- package/lib/commonjs/actions/ContinueButton.js +11 -12
- package/lib/commonjs/actions/ContinueButton.js.map +1 -1
- package/lib/commonjs/actions/PermissionButton.js +8 -10
- package/lib/commonjs/actions/PermissionButton.js.map +1 -1
- package/lib/commonjs/context/Liveness3DContext.js +12 -28
- package/lib/commonjs/context/Liveness3DContext.js.map +1 -1
- package/lib/commonjs/helpers/Liveness3DHelper.js +7 -10
- package/lib/commonjs/helpers/Liveness3DHelper.js.map +1 -1
- package/lib/commonjs/index.js +37 -132
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/interfaces/Liveness3DHelper.js.map +1 -1
- package/lib/commonjs/interfaces/OitiBackButtonInterface.js.map +1 -1
- package/lib/commonjs/interfaces/OitiContinueButton.js.map +1 -1
- package/lib/commonjs/interfaces/OitiPermissionButtonInterface.js.map +1 -1
- package/lib/commonjs/screens/Liveness3D/InstructionsView.js +4 -8
- package/lib/commonjs/screens/Liveness3D/InstructionsView.js.map +1 -1
- package/lib/commonjs/screens/PermissionView.js +4 -8
- package/lib/commonjs/screens/PermissionView.js.map +1 -1
- package/lib/commonjs/utils/continueButton.js +2 -7
- package/lib/commonjs/utils/continueButton.js.map +1 -1
- package/lib/commonjs/utils/normalize.js.map +1 -1
- package/lib/commonjs/utils/permissions.js +11 -21
- package/lib/commonjs/utils/permissions.js.map +1 -1
- package/lib/commonjs/utils/screenStore.js +1 -2
- package/lib/commonjs/utils/screenStore.js.map +1 -1
- package/lib/module/@types/ArgsType.js.map +1 -1
- package/lib/module/@types/FontsType.js.map +1 -1
- package/lib/module/@types/ResultType.js.map +1 -1
- package/lib/module/@types/ResultTypes.js.map +1 -1
- package/lib/module/@types/TextsType.js.map +1 -1
- package/lib/module/@types/ThemeType.js.map +1 -1
- package/lib/module/NativeRnLiveness3d.js +3 -0
- package/lib/module/NativeRnLiveness3d.js.map +1 -0
- package/lib/module/actions/BackButton.js +5 -6
- package/lib/module/actions/BackButton.js.map +1 -1
- package/lib/module/actions/ContinueButton.js +10 -10
- package/lib/module/actions/ContinueButton.js.map +1 -1
- package/lib/module/actions/PermissionButton.js +7 -8
- package/lib/module/actions/PermissionButton.js.map +1 -1
- package/lib/module/context/Liveness3DContext.js +10 -23
- package/lib/module/context/Liveness3DContext.js.map +1 -1
- package/lib/module/helpers/Liveness3DHelper.js +6 -7
- package/lib/module/helpers/Liveness3DHelper.js.map +1 -1
- package/lib/module/index.js +33 -120
- package/lib/module/index.js.map +1 -1
- package/lib/module/interfaces/Liveness3DHelper.js.map +1 -1
- package/lib/module/interfaces/OitiBackButtonInterface.js.map +1 -1
- package/lib/module/interfaces/OitiContinueButton.js.map +1 -1
- package/lib/module/interfaces/OitiPermissionButtonInterface.js.map +1 -1
- package/lib/module/screens/Liveness3D/InstructionsView.js +4 -6
- package/lib/module/screens/Liveness3D/InstructionsView.js.map +1 -1
- package/lib/module/screens/PermissionView.js +4 -6
- package/lib/module/screens/PermissionView.js.map +1 -1
- package/lib/module/utils/continueButton.js +3 -8
- package/lib/module/utils/continueButton.js.map +1 -1
- package/lib/module/utils/normalize.js.map +1 -1
- package/lib/module/utils/permissions.js +8 -17
- package/lib/module/utils/permissions.js.map +1 -1
- package/lib/module/utils/screenStore.js.map +1 -1
- package/oiti-rn-liveness3d.podspec +1 -1
- package/package.json +1 -1
- package/src/@types/ArgsType.ts +3 -4
- package/src/@types/ResultTypes.ts +3 -1
- package/src/NativeRnLiveness3d.ts +9 -0
- package/src/actions/BackButton.tsx +1 -1
- package/src/actions/ContinueButton.tsx +6 -5
- package/src/actions/PermissionButton.tsx +3 -3
- package/src/context/Liveness3DContext.tsx +11 -24
- package/src/helpers/Liveness3DHelper.tsx +1 -1
- package/src/index.tsx +27 -131
- package/src/interfaces/Liveness3DHelper.tsx +4 -2
- package/src/screens/Liveness3D/InstructionsView.tsx +0 -2
- package/src/screens/PermissionView.tsx +0 -1
- package/src/utils/continueButton.tsx +3 -10
- package/src/utils/permissions.tsx +9 -26
- package/android/settings.gradle +0 -6
- package/ios/Podfile.lock +0 -38
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/Info.plist +0 -46
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Headers/OICommons-Swift.h +0 -327
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Headers/OICommons.h +0 -15
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Info.plist +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Inter-Bold.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Inter-Medium.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Inter-Regular.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios.abi.json +0 -9
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -1818
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios.swiftinterface +0 -1818
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/OICommons +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Ubuntu-Bold.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Ubuntu-Medium.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Ubuntu-Regular.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/dSYMs/OICommons.framework.dSYM/Contents/Info.plist +0 -20
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/dSYMs/OICommons.framework.dSYM/Contents/Resources/DWARF/OICommons +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Headers/OICommons-Swift.h +0 -650
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Headers/OICommons.h +0 -15
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Info.plist +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Inter-Bold.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Inter-Medium.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Inter-Regular.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +0 -1818
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -1818
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/x86_64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +0 -1818
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +0 -1818
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/OICommons +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Ubuntu-Bold.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Ubuntu-Medium.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Ubuntu-Regular.otf +0 -0
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/_CodeSignature/CodeResources +0 -311
- package/ios/Pods/OICommons/Frameworks/OICommons.xcframework.zip +0 -0
- package/ios/Pods/OICommons/README.md +0 -1
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/Info.plist +0 -46
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Assets.car +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Headers/OIComponents-Swift.h +0 -455
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Headers/OIComponents.h +0 -18
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Info.plist +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios.abi.json +0 -9
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -732
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios.swiftinterface +0 -732
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/OIComponents +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/dSYMs/OIComponents.framework.dSYM/Contents/Info.plist +0 -20
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/dSYMs/OIComponents.framework.dSYM/Contents/Resources/DWARF/OIComponents +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Assets.car +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Headers/OIComponents-Swift.h +0 -906
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Headers/OIComponents.h +0 -18
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Info.plist +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +0 -732
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -732
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/x86_64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +0 -732
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +0 -732
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/OIComponents +0 -0
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/_CodeSignature/CodeResources +0 -256
- package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework.zip +0 -0
- package/ios/Pods/OIComponents/README.md +0 -1
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/Info.plist +0 -46
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Assets.car +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Headers/OILiveness3D-Swift.h +0 -343
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Headers/OILiveness3D.h +0 -18
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Info.plist +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/Por_favor_pressione_o_botao_para_iniciar.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/Toque_duas_veezs_em_qualquer_lugar_da_tela.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/carregando.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/escaneamento_feito_com_sucesso.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/por_favor_chegue_mais_perto.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/por_favor_tente_novamente.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/prepare-se_para_seu_reconhecimento_facial.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/rosto_muito_longe.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/segure_firme.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/suporte_vocal_desligado.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/suporte_vocal_ligado.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios.abi.json +0 -9
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -226
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios.swiftinterface +0 -226
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/OILiveness3D +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Info.plist +0 -20
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/DWARF/OILiveness3D +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/Swift/aarch64/OICommons.swiftinterface +0 -1818
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/Swift/aarch64/OIComponents.swiftinterface +0 -732
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/Swift/aarch64/OINetwork.swiftinterface +0 -144
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/Swift/aarch64/OISecurity.swiftinterface +0 -164
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Assets.car +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Headers/OILiveness3D-Swift.h +0 -682
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Headers/OILiveness3D.h +0 -18
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Info.plist +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/Por_favor_pressione_o_botao_para_iniciar.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/Toque_duas_veezs_em_qualquer_lugar_da_tela.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/carregando.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/escaneamento_feito_com_sucesso.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/por_favor_chegue_mais_perto.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/por_favor_tente_novamente.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/prepare-se_para_seu_reconhecimento_facial.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/rosto_muito_longe.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/segure_firme.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/suporte_vocal_desligado.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/suporte_vocal_ligado.mp3 +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +0 -226
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -226
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/x86_64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +0 -226
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +0 -226
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/OILiveness3D +0 -0
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/_CodeSignature/CodeResources +0 -377
- package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework.zip +0 -0
- package/ios/Pods/OILiveness3D/README.md +0 -32
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/Info.plist +0 -44
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Assets.car +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/FaceTecSDK +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/GenericGuidanceContentLayout.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Headers/FaceTecPublicApi.h +0 -1932
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Headers/FaceTecPublicStringKeys.h +0 -105
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Headers/FaceTecSDK.h +0 -16
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Info.plist +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Modules/module.modulemap +0 -6
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/PrivacyInfo.xcprivacy +0 -29
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/ReadyScreenGuidanceContentLayout.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/RetryScreenGuidanceContentLayout.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/SharedGuidanceLayout.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/9Uo-4b-JiE-view-Ae0-rb-UqS.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/CJ6-MX-bJp-view-8JL-Rc-0g1.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/FaceScanViewController.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/FaceTecAdditionalReviewViewController.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/FaceTecIDFeedbackViewController.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/FaceTecOCRConfirmationViewController.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/IDCaptureViewController.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/IDSelectionViewController.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/Info.plist +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/Pyw-6G-JSY-view-Zue-Eo-Q2U.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/QWA-8Y-vUM-view-wJB-Z5-eD2.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/alz-Ia-X3d-view-IKu-EI-Hug.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/l2Q-cc-kD8-view-UUy-6c-meu.nib +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/af.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/ar.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/attributions.txt +0 -137
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/1f5b84f51ce0fcfbb76e904b7bcaa7560f601e1394a0b29367a09385312287eb +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/2b075ac1a6132b5b8a4c9ef0ba6b0cd84db7838aca9a000e50d907f40770a4ab +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/59cc2a9af81aaca2376702c2490650f4da2775fa673274db98aad41b7ef101c0 +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/5b63e98b991aedabb60665503384f30bffd939decf9433883b30b78011ee501a +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/66388dc76dc16bc6b76b682edd218a575bf45b9b +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/6b3133f0f39ff89a2a169d61176ee17cafacc5e288f334e2b64ee82892d11ccd +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/9077d16225f9314163ef1e7db6fc7d4088bb903d134bd95f23d5591ca4dfbfca +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/a74f2afb9d20f2375ccbd14e67c094b85c89ceb608f7cf8ae04f3f646a6c5672 +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/b501893e75f62ee1707643e35b21109927b07ed5b202321c961b424cbc2e4695 +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/dbd7a353f0130bb983d6ba05917e9be991d70e8f028df4b74e30bc6497ef7f71 +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/f2.xml +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/fd6d368a5658496536e2bfae170d1b823a3629b242cafc09784bfba4e56d8c80 +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/marker +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/vu0ilin6we3lrzo5f83f7qs2jul4aq7v4aoynrmch8zfvpi8ezrfyafa4t0fx87l +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/de.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/el.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/en.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/es.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/fr.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/kk.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/nb.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/pt-BR.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/ru.lproj/FaceTec.strings +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/strip-unused-architectures-from-target.sh +0 -62
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/FaceTecSDK +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Headers/FaceTecPublicApi.h +0 -1932
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Headers/FaceTecPublicStringKeys.h +0 -105
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Headers/FaceTecSDK.h +0 -16
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Info.plist +0 -0
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Modules/module.modulemap +0 -6
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/_CodeSignature/CodeResources +0 -146
- package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework.zip +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/Info.plist +0 -46
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Headers/OINetwork-Swift.h +0 -312
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Headers/OINetwork.h +0 -15
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Info.plist +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios.abi.json +0 -9
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -144
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios.swiftinterface +0 -144
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/OINetwork +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/dSYMs/OINetwork.framework.dSYM/Contents/Info.plist +0 -20
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/dSYMs/OINetwork.framework.dSYM/Contents/Resources/DWARF/OINetwork +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/dSYMs/OINetwork.framework.dSYM/Contents/Resources/Swift/aarch64/OICommons.swiftinterface +0 -1818
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Headers/OINetwork-Swift.h +0 -620
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Headers/OINetwork.h +0 -15
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Info.plist +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +0 -144
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -144
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/x86_64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +0 -144
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +0 -144
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/OINetwork +0 -0
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/_CodeSignature/CodeResources +0 -245
- package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework.zip +0 -0
- package/ios/Pods/OINetwork/README.md +0 -1
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/Info.plist +0 -46
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Headers/OISecurity-Swift.h +0 -311
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Headers/OISecurity.h +0 -16
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Info.plist +0 -0
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios.abi.json +0 -9
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -164
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios.swiftinterface +0 -164
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/OISecurity +0 -0
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/PrivacyInfo.xcprivacy +0 -37
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/dSYMs/OISecurity.framework.dSYM/Contents/Info.plist +0 -20
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/dSYMs/OISecurity.framework.dSYM/Contents/Resources/DWARF/OISecurity +0 -0
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/dSYMs/OISecurity.framework.dSYM/Contents/Resources/Swift/aarch64/OICommons.swiftinterface +0 -1818
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/dSYMs/OISecurity.framework.dSYM/Contents/Resources/Swift/aarch64/OINetwork.swiftinterface +0 -144
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Headers/OISecurity-Swift.h +0 -618
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Headers/OISecurity.h +0 -16
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Info.plist +0 -0
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +0 -164
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -164
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/x86_64-apple-ios-simulator.abi.json +0 -9
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +0 -164
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +0 -164
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/module.modulemap +0 -11
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/OISecurity +0 -0
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/PrivacyInfo.xcprivacy +0 -37
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/_CodeSignature/CodeResources +0 -256
- package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework.zip +0 -0
- package/ios/Pods/OISecurity/README.md +0 -1
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +0 -1239
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OICommons.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OIComponents.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OILiveness3D.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OILiveness3D_FT.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OINetwork.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OISecurity.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/Pods-RnLiveness3d.xcscheme +0 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/xcschememanagement.plist +0 -46
- package/ios/Pods/Target Support Files/OICommons/OICommons-xcframeworks.sh +0 -121
- package/ios/Pods/Target Support Files/OICommons/OICommons.debug.xcconfig +0 -15
- package/ios/Pods/Target Support Files/OICommons/OICommons.release.xcconfig +0 -15
- package/ios/Pods/Target Support Files/OIComponents/OIComponents-xcframeworks.sh +0 -121
- package/ios/Pods/Target Support Files/OIComponents/OIComponents.debug.xcconfig +0 -15
- package/ios/Pods/Target Support Files/OIComponents/OIComponents.release.xcconfig +0 -15
- package/ios/Pods/Target Support Files/OILiveness3D/OILiveness3D-xcframeworks.sh +0 -121
- package/ios/Pods/Target Support Files/OILiveness3D/OILiveness3D.debug.xcconfig +0 -16
- package/ios/Pods/Target Support Files/OILiveness3D/OILiveness3D.release.xcconfig +0 -16
- package/ios/Pods/Target Support Files/OILiveness3D_FT/OILiveness3D_FT-xcframeworks.sh +0 -121
- package/ios/Pods/Target Support Files/OILiveness3D_FT/OILiveness3D_FT.debug.xcconfig +0 -13
- package/ios/Pods/Target Support Files/OILiveness3D_FT/OILiveness3D_FT.release.xcconfig +0 -13
- package/ios/Pods/Target Support Files/OINetwork/OINetwork-xcframeworks.sh +0 -121
- package/ios/Pods/Target Support Files/OINetwork/OINetwork.debug.xcconfig +0 -16
- package/ios/Pods/Target Support Files/OINetwork/OINetwork.release.xcconfig +0 -16
- package/ios/Pods/Target Support Files/OISecurity/OISecurity-xcframeworks.sh +0 -121
- package/ios/Pods/Target Support Files/OISecurity/OISecurity.debug.xcconfig +0 -16
- package/ios/Pods/Target Support Files/OISecurity/OISecurity.release.xcconfig +0 -16
- package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-Info.plist +0 -26
- package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-acknowledgements.markdown +0 -23
- package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-acknowledgements.plist +0 -79
- package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-dummy.m +0 -5
- package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-umbrella.h +0 -16
- package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d.debug.xcconfig +0 -14
- package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d.modulemap +0 -6
- package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d.release.xcconfig +0 -14
- package/ios/RnLiveness3d-Bridging-Header.h +0 -2
- package/ios/RnLiveness3d.m +0 -34
- package/ios/RnLiveness3d.xcodeproj/project.pbxproj +0 -337
- package/ios/RnLiveness3d.xcodeproj/xcshareddata/xcschemes/RnLiveness3d.xcscheme +0 -80
- package/ios/RnLiveness3d.xcworkspace/contents.xcworkspacedata +0 -10
- package/ios/RnLiveness3d.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/ios/info.plist +0 -8
- package/lib/typescript/@types/ArgsType.d.ts +0 -19
- package/lib/typescript/@types/ArgsType.d.ts.map +0 -1
- package/lib/typescript/@types/FontsType.d.ts +0 -12
- package/lib/typescript/@types/FontsType.d.ts.map +0 -1
- package/lib/typescript/@types/ResultType.d.ts +0 -13
- package/lib/typescript/@types/ResultType.d.ts.map +0 -1
- package/lib/typescript/@types/ResultTypes.d.ts +0 -6
- package/lib/typescript/@types/ResultTypes.d.ts.map +0 -1
- package/lib/typescript/@types/TextsType.d.ts +0 -36
- package/lib/typescript/@types/TextsType.d.ts.map +0 -1
- package/lib/typescript/@types/ThemeType.d.ts +0 -48
- package/lib/typescript/@types/ThemeType.d.ts.map +0 -1
- package/lib/typescript/actions/BackButton.d.ts +0 -4
- package/lib/typescript/actions/BackButton.d.ts.map +0 -1
- package/lib/typescript/actions/ContinueButton.d.ts +0 -4
- package/lib/typescript/actions/ContinueButton.d.ts.map +0 -1
- package/lib/typescript/actions/PermissionButton.d.ts +0 -4
- package/lib/typescript/actions/PermissionButton.d.ts.map +0 -1
- package/lib/typescript/context/Liveness3DContext.d.ts +0 -28
- package/lib/typescript/context/Liveness3DContext.d.ts.map +0 -1
- package/lib/typescript/helpers/Liveness3DHelper.d.ts +0 -4
- package/lib/typescript/helpers/Liveness3DHelper.d.ts.map +0 -1
- package/lib/typescript/index.d.ts +0 -32
- package/lib/typescript/index.d.ts.map +0 -1
- package/lib/typescript/interfaces/Liveness3DHelper.d.ts +0 -7
- package/lib/typescript/interfaces/Liveness3DHelper.d.ts.map +0 -1
- package/lib/typescript/interfaces/OitiBackButtonInterface.d.ts +0 -6
- package/lib/typescript/interfaces/OitiBackButtonInterface.d.ts.map +0 -1
- package/lib/typescript/interfaces/OitiContinueButton.d.ts +0 -6
- package/lib/typescript/interfaces/OitiContinueButton.d.ts.map +0 -1
- package/lib/typescript/interfaces/OitiPermissionButtonInterface.d.ts +0 -6
- package/lib/typescript/interfaces/OitiPermissionButtonInterface.d.ts.map +0 -1
- package/lib/typescript/screens/Liveness3D/InstructionsView.d.ts +0 -6
- package/lib/typescript/screens/Liveness3D/InstructionsView.d.ts.map +0 -1
- package/lib/typescript/screens/PermissionView.d.ts +0 -6
- package/lib/typescript/screens/PermissionView.d.ts.map +0 -1
- package/lib/typescript/utils/continueButton.d.ts +0 -2
- package/lib/typescript/utils/continueButton.d.ts.map +0 -1
- package/lib/typescript/utils/normalize.d.ts +0 -2
- package/lib/typescript/utils/normalize.d.ts.map +0 -1
- package/lib/typescript/utils/permissions.d.ts +0 -4
- package/lib/typescript/utils/permissions.d.ts.map +0 -1
- package/lib/typescript/utils/screenStore.d.ts +0 -5
- package/lib/typescript/utils/screenStore.d.ts.map +0 -1
|
@@ -7,21 +7,17 @@ exports.useLiveness3DContext = exports.default = exports.SCREEN = exports.Livene
|
|
|
7
7
|
var _index = require("../index");
|
|
8
8
|
var _react = _interopRequireWildcard(require("react"));
|
|
9
9
|
var _permissions = require("../utils/permissions");
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
13
|
-
const SCREEN = Object.freeze({
|
|
10
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
11
|
+
const SCREEN = exports.SCREEN = Object.freeze({
|
|
14
12
|
INSTRUCTION_VIEW: 1,
|
|
15
13
|
PERMISSION_VIEW: 2
|
|
16
14
|
});
|
|
17
|
-
exports.SCREEN = SCREEN;
|
|
18
15
|
const Liveness3DContext = /*#__PURE__*/(0, _react.createContext)(undefined);
|
|
19
|
-
const Liveness3DProvider =
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
} = _ref;
|
|
16
|
+
const Liveness3DProvider = ({
|
|
17
|
+
children,
|
|
18
|
+
onError,
|
|
19
|
+
onSuccess
|
|
20
|
+
}) => {
|
|
25
21
|
const [screen, setScreen] = (0, _react.useState)(1);
|
|
26
22
|
const [navigation, setNavigation] = (0, _react.useState)();
|
|
27
23
|
const [options, setOptions] = (0, _react.useState)();
|
|
@@ -47,22 +43,11 @@ const Liveness3DProvider = _ref => {
|
|
|
47
43
|
}
|
|
48
44
|
function startLiveness() {
|
|
49
45
|
if (options) {
|
|
50
|
-
(0, _index.startLiveness3d)(options
|
|
51
|
-
{
|
|
52
|
-
if (_reactNative.Platform.OS == 'android') {
|
|
53
|
-
//@ts-ignore
|
|
54
|
-
onSuccess(JSON.parse(result));
|
|
55
|
-
} else {
|
|
56
|
-
onSuccess(result);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}).catch(error => {
|
|
60
|
-
onError(error);
|
|
61
|
-
});
|
|
46
|
+
(0, _index.startLiveness3d)(options, onSuccess, onError);
|
|
62
47
|
}
|
|
63
48
|
}
|
|
64
|
-
function
|
|
65
|
-
(0, _permissions.
|
|
49
|
+
function onRequestCameraPermission() {
|
|
50
|
+
(0, _permissions.requestCameraPermission)().then(result => {
|
|
66
51
|
result === true && startLiveness();
|
|
67
52
|
result === false && setScreen(1);
|
|
68
53
|
});
|
|
@@ -78,7 +63,7 @@ const Liveness3DProvider = _ref => {
|
|
|
78
63
|
options,
|
|
79
64
|
setOptions,
|
|
80
65
|
startLiveness,
|
|
81
|
-
|
|
66
|
+
onRequestCameraPermission,
|
|
82
67
|
callbackView,
|
|
83
68
|
setCallbackView
|
|
84
69
|
};
|
|
@@ -99,6 +84,5 @@ const useLiveness3DContext = () => {
|
|
|
99
84
|
return context;
|
|
100
85
|
};
|
|
101
86
|
exports.useLiveness3DContext = useLiveness3DContext;
|
|
102
|
-
var _default = Liveness3DContext;
|
|
103
|
-
exports.default = _default;
|
|
87
|
+
var _default = exports.default = Liveness3DContext;
|
|
104
88
|
//# sourceMappingURL=Liveness3DContext.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_index","require","_react","_interopRequireWildcard","_permissions","
|
|
1
|
+
{"version":3,"names":["_index","require","_react","_interopRequireWildcard","_permissions","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","SCREEN","exports","freeze","INSTRUCTION_VIEW","PERMISSION_VIEW","Liveness3DContext","createContext","undefined","Liveness3DProvider","children","onError","onSuccess","screen","setScreen","useState","navigation","setNavigation","options","setOptions","callbackView","setCallbackView","onLiveness3DError","error","onLiveness3DSuccess","result","onBack","code","message","startLiveness","startLiveness3d","onRequestCameraPermission","requestCameraPermission","then","contextValue","createElement","Provider","value","useLiveness3DContext","context","useContext","Error","_default"],"sourceRoot":"../../../src","sources":["context/Liveness3DContext.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAC,uBAAA,CAAAF,OAAA;AAIA,IAAAG,YAAA,GAAAH,OAAA;AAA+D,SAAAE,wBAAAE,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAJ,uBAAA,YAAAA,CAAAE,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAExD,MAAMkB,MAAM,GAAAC,OAAA,CAAAD,MAAA,GAAGH,MAAM,CAACK,MAAM,CAAC;EAClCC,gBAAgB,EAAE,CAAC;EACnBC,eAAe,EAAE;AACnB,CAAU,CAAC;AAkBX,MAAMC,iBAAiB,gBAAG,IAAAC,oBAAa,EACrCC,SACF,CAAC;AAEM,MAAMC,kBAAkC,GAAGA,CAAC;EACjDC,QAAQ;EACRC,OAAO;EACPC;AACF,CAAC,KAAK;EACJ,MAAM,CAACC,MAAM,EAAEC,SAAS,CAAC,GAAG,IAAAC,eAAQ,EAAS,CAAC,CAAC;EAC/C,MAAM,CAACC,UAAU,EAAEC,aAAa,CAAC,GAAG,IAAAF,eAAQ,EAAM,CAAC;EACnD,MAAM,CAACG,OAAO,EAAEC,UAAU,CAAC,GAAG,IAAAJ,eAAQ,EAAW,CAAC;EAClD,MAAM,CAACK,YAAY,EAAEC,eAAe,CAAC,GAAG,IAAAN,eAAQ,EAAS,EAAE,CAAC;EAE5D,MAAMO,iBAAiB,GAAIC,KAAkB,IAAK;IAChDZ,OAAO,CAACY,KAAK,CAAC;EAChB,CAAC;EAED,MAAMC,mBAAmB,GAAIC,MAAqB,IAAK;IACrDb,SAAS,CAACa,MAAM,CAAC;EACnB,CAAC;EAED,SAASC,MAAMA,CAAA,EAAG;IAChB,QAAQb,MAAM;MACZ,KAAKZ,MAAM,CAACG,gBAAgB;QAC1BkB,iBAAiB,CAAC;UAAEK,IAAI,EAAE,GAAG;UAAEC,OAAO,EAAE;QAAkB,CAAC,CAAC;QAC5D;MACF,KAAK3B,MAAM,CAACI,eAAe;QACzBS,SAAS,CAAC,CAAC,CAAC;QACZ;IACJ;EACF;EAEA,SAASe,aAAaA,CAAA,EAAG;IACvB,IAAIX,OAAO,EAAE;MACX,IAAAY,sBAAe,EAACZ,OAAO,EAAEN,SAAS,EAAED,OAAO,CAAC;IAC9C;EACF;EAEA,SAASoB,yBAAyBA,CAAA,EAAG;IACnC,IAAAC,oCAAuB,EAAC,CAAC,CAACC,IAAI,CAAER,MAAM,IAAK;MACzCA,MAAM,KAAK,IAAI,IAAII,aAAa,CAAC,CAAC;MAClCJ,MAAM,KAAK,KAAK,IAAIX,SAAS,CAAC,CAAC,CAAC;IAClC,CAAC,CAAC;EACJ;EAEA,MAAMoB,YAAmC,GAAG;IAC1CrB,MAAM;IACNC,SAAS;IACTE,UAAU;IACVC,aAAa;IACbK,iBAAiB;IACjBE,mBAAmB;IACnBE,MAAM;IACNR,OAAO;IACPC,UAAU;IACVU,aAAa;IACbE,yBAAyB;IACzBX,YAAY;IACZC;EACF,CAAC;EAED;IAAA;IACE;IACA1C,MAAA,CAAAa,OAAA,CAAA2C,aAAA,CAAC7B,iBAAiB,CAAC8B,QAAQ;MAACC,KAAK,EAAEH;IAAa,GAC7CxB,QACyB;EAAC;AAEjC,CAAC;AAACR,OAAA,CAAAO,kBAAA,GAAAA,kBAAA;AAEK,MAAM6B,oBAAoB,GAAGA,CAAA,KAA6B;EAC/D,MAAMC,OAAO,GAAG,IAAAC,iBAAU,EAAClC,iBAAiB,CAAC;EAC7C,IAAI,CAACiC,OAAO,EAAE;IACZ,MAAM,IAAIE,KAAK,CACb,+DACF,CAAC;EACH;EACA,OAAOF,OAAO;AAChB,CAAC;AAACrC,OAAA,CAAAoC,oBAAA,GAAAA,oBAAA;AAAA,IAAAI,QAAA,GAAAxC,OAAA,CAAAV,OAAA,GAEac,iBAAiB","ignoreList":[]}
|
|
@@ -4,16 +4,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.Liveness3DHelper = void 0;
|
|
7
|
-
var _react =
|
|
7
|
+
var _react = require("react");
|
|
8
8
|
var _Liveness3DContext = require("../context/Liveness3DContext");
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
options,
|
|
15
|
-
onError
|
|
16
|
-
} = _ref;
|
|
9
|
+
const Liveness3DHelper = ({
|
|
10
|
+
children,
|
|
11
|
+
options,
|
|
12
|
+
onError
|
|
13
|
+
}) => {
|
|
17
14
|
const {
|
|
18
15
|
setNavigation,
|
|
19
16
|
setOptions,
|
|
@@ -28,7 +25,7 @@ const Liveness3DHelper = _ref => {
|
|
|
28
25
|
}
|
|
29
26
|
setOptions(options);
|
|
30
27
|
}, [options, onError, setNavigation, setOptions, setCallbackView]);
|
|
31
|
-
return /*#__PURE__*/
|
|
28
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, children);
|
|
32
29
|
};
|
|
33
30
|
exports.Liveness3DHelper = Liveness3DHelper;
|
|
34
31
|
//# sourceMappingURL=Liveness3DHelper.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","
|
|
1
|
+
{"version":3,"names":["_react","require","_Liveness3DContext","Liveness3DHelper","children","options","onError","setNavigation","setOptions","setCallbackView","useLiveness3DContext","useEffect","appkey","undefined","code","message","React","createElement","Fragment","exports"],"sourceRoot":"../../../src","sources":["helpers/Liveness3DHelper.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,kBAAA,GAAAD,OAAA;AAGO,MAAME,gBAA+C,GAAGA,CAAC;EAC9DC,QAAQ;EACRC,OAAO;EACPC;AACF,CAAC,KAAK;EACJ,MAAM;IAAEC,aAAa;IAAEC,UAAU;IAAEC;EAAgB,CAAC,GAAG,IAAAC,uCAAoB,EAAC,CAAC;EAE7E,IAAAC,gBAAS,EAAC,MAAM;IACd,IACEN,OAAO,CAACO,MAAM,KAAK,IAAI,IACvBP,OAAO,CAACO,MAAM,KAAKC,SAAS,IAC5BR,OAAO,CAACO,MAAM,KAAK,EAAE,EACrB;MACAN,OAAO,CAAC;QAAEQ,IAAI,EAAE,GAAG;QAAEC,OAAO,EAAE;MAAgB,CAAC,CAAC;IAClD;IACAP,UAAU,CAACH,OAAO,CAAC;EACrB,CAAC,EAAE,CAACA,OAAO,EAAEC,OAAO,EAAEC,aAAa,EAAEC,UAAU,EAAEC,eAAe,CAAC,CAAC;EAElE,oBAAOO,KAAA,CAAAC,aAAA,CAAAD,KAAA,CAAAE,QAAA,QAAGd,QAAW,CAAC;AACxB,CAAC;AAACe,OAAA,CAAAhB,gBAAA,GAAAA,gBAAA","ignoreList":[]}
|
package/lib/commonjs/index.js
CHANGED
|
@@ -23,141 +23,54 @@ Object.defineProperty(exports, "PermissionButton", {
|
|
|
23
23
|
return _PermissionButton.PermissionButton;
|
|
24
24
|
}
|
|
25
25
|
});
|
|
26
|
-
exports.RnLiveness3d = void 0;
|
|
27
|
-
exports.askcamerapermissionAndroid = askcamerapermissionAndroid;
|
|
28
|
-
exports.checkIosPermission = checkIosPermission;
|
|
29
|
-
exports.checkIosPermissionGranted = checkIosPermissionGranted;
|
|
30
|
-
exports.checkcamerapermissionAndroid = checkcamerapermissionAndroid;
|
|
31
|
-
exports.requestCameraPermission = void 0;
|
|
32
26
|
exports.startLiveness3d = startLiveness3d;
|
|
33
|
-
var _react = _interopRequireDefault(require("react"));
|
|
34
27
|
var _reactNative = require("react-native");
|
|
35
28
|
var _InstructionsView = _interopRequireDefault(require("./screens/Liveness3D/InstructionsView"));
|
|
36
29
|
var _PermissionView = _interopRequireDefault(require("./screens/PermissionView"));
|
|
37
30
|
var _Liveness3DContext = require("./context/Liveness3DContext");
|
|
38
31
|
var _Liveness3DHelper = require("./helpers/Liveness3DHelper");
|
|
32
|
+
var _permissions = require("./utils/permissions");
|
|
33
|
+
var _NativeRnLiveness3d = _interopRequireDefault(require("./NativeRnLiveness3d"));
|
|
39
34
|
var _ContinueButton = require("./actions/ContinueButton");
|
|
40
35
|
var _PermissionButton = require("./actions/PermissionButton");
|
|
41
36
|
var _BackButton = require("./actions/BackButton");
|
|
42
|
-
function _interopRequireDefault(
|
|
43
|
-
|
|
44
|
-
ios: "- You have run 'pod install'\n",
|
|
45
|
-
default: ''
|
|
46
|
-
}) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo Go\n';
|
|
47
|
-
const RnLiveness3d = _reactNative.NativeModules.RnLiveness3d ? _reactNative.NativeModules.RnLiveness3d : new Proxy({}, {
|
|
48
|
-
get() {
|
|
49
|
-
throw new Error(LINKING_ERROR);
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
exports.RnLiveness3d = RnLiveness3d;
|
|
53
|
-
function startLiveness3d(options, loading) {
|
|
37
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
38
|
+
function startLiveness3d(options, onSuccess, onError, loading) {
|
|
54
39
|
let args = {
|
|
55
40
|
appkey: (options === null || options === void 0 ? void 0 : options.appkey) === undefined ? '' : options === null || options === void 0 ? void 0 : options.appkey,
|
|
56
|
-
ticket: options === null || options === void 0 ? void 0 : options.ticket,
|
|
57
41
|
environment: (options === null || options === void 0 ? void 0 : options.environment) === undefined ? 'HML' : options === null || options === void 0 ? void 0 : options.environment,
|
|
58
42
|
liveness3Dtext: (options === null || options === void 0 ? void 0 : options.liveness3Dtext) || {},
|
|
59
43
|
theme: (options === null || options === void 0 ? void 0 : options.theme) || {},
|
|
60
44
|
fonts: (options === null || options === void 0 ? void 0 : options.fonts) || {},
|
|
61
45
|
loading: loading
|
|
62
46
|
};
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
function checkIosPermission() {
|
|
69
|
-
return RnLiveness3d.checkiospermission({
|
|
70
|
-
p: 'granted'
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
function checkIosPermissionGranted() {
|
|
74
|
-
return RnLiveness3d.checkpermissiongranted({
|
|
75
|
-
p: 'granted'
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
function checkcamerapermissionAndroid() {
|
|
79
|
-
return RnLiveness3d.checkcamerapermission();
|
|
80
|
-
}
|
|
81
|
-
function askcamerapermissionAndroid() {
|
|
82
|
-
return RnLiveness3d.askcamerapermission();
|
|
83
|
-
}
|
|
84
|
-
const requestCameraPermission = async (options, onSuccess, onError, loading) => {
|
|
85
|
-
if (_reactNative.Platform.OS === 'ios') {
|
|
86
|
-
checkIosPermission().then(async result => {
|
|
87
|
-
if (result === true) {
|
|
88
|
-
await startLiveness3d(options, loading).then(result => {
|
|
89
|
-
if (_reactNative.Platform.OS == 'android') {
|
|
90
|
-
//@ts-ignore
|
|
91
|
-
onSuccess(JSON.parse(result));
|
|
92
|
-
} else {
|
|
93
|
-
onSuccess(result);
|
|
94
|
-
}
|
|
95
|
-
}).catch(error => onError(error));
|
|
96
|
-
}
|
|
97
|
-
if (result === false) {
|
|
98
|
-
return;
|
|
99
|
-
}
|
|
100
|
-
});
|
|
101
|
-
}
|
|
102
|
-
if (_reactNative.Platform.OS === 'android') {
|
|
103
|
-
try {
|
|
104
|
-
await askcamerapermissionAndroid().then(async res => {
|
|
105
|
-
if (res === true) {
|
|
106
|
-
await startLiveness3d(options, loading).then(result => {
|
|
107
|
-
if (_reactNative.Platform.OS == 'android') {
|
|
108
|
-
//@ts-ignore
|
|
109
|
-
onSuccess(JSON.parse(result));
|
|
110
|
-
} else {
|
|
111
|
-
onSuccess(result);
|
|
112
|
-
}
|
|
113
|
-
}).catch(error => onError(error));
|
|
114
|
-
} else {
|
|
115
|
-
console.log('Camera permission denied');
|
|
116
|
-
}
|
|
117
|
-
});
|
|
118
|
-
} catch (err) {
|
|
119
|
-
console.warn(err);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
};
|
|
123
|
-
exports.requestCameraPermission = requestCameraPermission;
|
|
124
|
-
async function checkPermission() {
|
|
125
|
-
if (_reactNative.Platform.OS === 'ios') {
|
|
126
|
-
const grantediso = await checkIosPermissionGranted();
|
|
127
|
-
if (grantediso === true) {
|
|
128
|
-
return true;
|
|
129
|
-
}
|
|
130
|
-
if (grantediso === false) {
|
|
131
|
-
return false;
|
|
47
|
+
_NativeRnLiveness3d.default.startLiveness3d(args).then(result => {
|
|
48
|
+
if (_reactNative.Platform.OS === 'android') {
|
|
49
|
+
onSuccess(JSON.parse(result));
|
|
50
|
+
} else {
|
|
51
|
+
onSuccess(result);
|
|
132
52
|
}
|
|
133
|
-
}
|
|
134
|
-
const granted = await checkcamerapermissionAndroid();
|
|
135
|
-
if (granted) {
|
|
136
|
-
return true;
|
|
137
|
-
} else {
|
|
138
|
-
return false;
|
|
139
|
-
}
|
|
53
|
+
}).catch(error => onError(error));
|
|
140
54
|
}
|
|
141
|
-
function Liveness3dView(
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
} = _ref;
|
|
55
|
+
function Liveness3dView({
|
|
56
|
+
CustomInstructionView,
|
|
57
|
+
CustomPermissionView,
|
|
58
|
+
options,
|
|
59
|
+
loading,
|
|
60
|
+
onSuccess,
|
|
61
|
+
onError,
|
|
62
|
+
onBack
|
|
63
|
+
}) {
|
|
151
64
|
return (
|
|
152
65
|
/*#__PURE__*/
|
|
153
66
|
//@ts-ignore
|
|
154
|
-
|
|
67
|
+
React.createElement(_Liveness3DContext.Liveness3DProvider, {
|
|
155
68
|
onError: onError,
|
|
156
69
|
onSuccess: onSuccess
|
|
157
|
-
}, /*#__PURE__*/
|
|
70
|
+
}, /*#__PURE__*/React.createElement(_Liveness3DHelper.Liveness3DHelper, {
|
|
158
71
|
options: options,
|
|
159
72
|
onError: onError
|
|
160
|
-
}, /*#__PURE__*/
|
|
73
|
+
}, /*#__PURE__*/React.createElement(GetIntructionView, {
|
|
161
74
|
CustomInstructionView: CustomInstructionView,
|
|
162
75
|
CustomPermissionView: CustomPermissionView,
|
|
163
76
|
options: options,
|
|
@@ -168,16 +81,15 @@ function Liveness3dView(_ref) {
|
|
|
168
81
|
})))
|
|
169
82
|
);
|
|
170
83
|
}
|
|
171
|
-
function GetIntructionView(
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
} = _ref2;
|
|
84
|
+
function GetIntructionView({
|
|
85
|
+
CustomInstructionView,
|
|
86
|
+
CustomPermissionView,
|
|
87
|
+
options,
|
|
88
|
+
loading,
|
|
89
|
+
onSuccess,
|
|
90
|
+
onError,
|
|
91
|
+
onBack
|
|
92
|
+
}) {
|
|
181
93
|
const {
|
|
182
94
|
setScreen,
|
|
183
95
|
screen
|
|
@@ -194,30 +106,23 @@ function GetIntructionView(_ref2) {
|
|
|
194
106
|
}
|
|
195
107
|
async function verifyPermission() {
|
|
196
108
|
if (screen === 1) {
|
|
197
|
-
if ((
|
|
198
|
-
startLiveness3d(options, loading)
|
|
199
|
-
if (_reactNative.Platform.OS == 'android') {
|
|
200
|
-
//@ts-ignore
|
|
201
|
-
onSuccess(JSON.parse(result));
|
|
202
|
-
} else {
|
|
203
|
-
onSuccess(result);
|
|
204
|
-
}
|
|
205
|
-
}).catch(error => onError(error));
|
|
109
|
+
if ((0, _permissions.checkCameraPermissionGranted)() === true) {
|
|
110
|
+
startLiveness3d(options, onSuccess, onError, loading);
|
|
206
111
|
} else {
|
|
207
112
|
setScreen(2);
|
|
208
113
|
}
|
|
209
114
|
}
|
|
210
115
|
if (screen === 2) {
|
|
211
|
-
await
|
|
116
|
+
await (0, _permissions.requestCameraPermission)();
|
|
212
117
|
setScreen(1);
|
|
213
118
|
}
|
|
214
119
|
}
|
|
215
|
-
return /*#__PURE__*/
|
|
120
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, screen === 1 && (!CustomInstructionView ? /*#__PURE__*/React.createElement(_InstructionsView.default, {
|
|
216
121
|
onVerify: verifyPermission,
|
|
217
122
|
onBack: onBackScreen
|
|
218
|
-
}) : CustomInstructionView), screen === 2 && (!CustomPermissionView ? /*#__PURE__*/
|
|
123
|
+
}) : /*#__PURE__*/React.createElement(CustomInstructionView, null)), screen === 2 && (!CustomPermissionView ? /*#__PURE__*/React.createElement(_PermissionView.default, {
|
|
219
124
|
onVerify: verifyPermission,
|
|
220
125
|
onBack: onBackScreen
|
|
221
|
-
}) : CustomPermissionView));
|
|
126
|
+
}) : /*#__PURE__*/React.createElement(CustomPermissionView, null)));
|
|
222
127
|
}
|
|
223
128
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["_reactNative","require","_InstructionsView","_interopRequireDefault","_PermissionView","_Liveness3DContext","_Liveness3DHelper","_permissions","_NativeRnLiveness3d","_ContinueButton","_PermissionButton","_BackButton","e","__esModule","default","startLiveness3d","options","onSuccess","onError","loading","args","appkey","undefined","environment","liveness3Dtext","theme","fonts","RnLiveness3d","then","result","Platform","OS","JSON","parse","catch","error","Liveness3dView","CustomInstructionView","CustomPermissionView","onBack","React","createElement","Liveness3DProvider","Liveness3DHelper","GetIntructionView","setScreen","screen","useLiveness3DContext","onBackScreen","SCREEN","INSTRUCTION_VIEW","PERMISSION_VIEW","verifyPermission","checkCameraPermissionGranted","requestCameraPermission","Fragment","onVerify"],"sourceRoot":"../../src","sources":["index.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["interfaces/Liveness3DHelper.tsx"],"mappings":""}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["interfaces/Liveness3DHelper.tsx"],"mappings":"","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["interfaces/OitiBackButtonInterface.tsx"],"mappings":""}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["interfaces/OitiBackButtonInterface.tsx"],"mappings":"","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["interfaces/OitiContinueButton.tsx"],"mappings":""}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["interfaces/OitiContinueButton.tsx"],"mappings":"","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["interfaces/OitiPermissionButtonInterface.tsx"],"mappings":""}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["interfaces/OitiPermissionButtonInterface.tsx"],"mappings":"","ignoreList":[]}
|
|
@@ -4,22 +4,18 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = InstructionsView;
|
|
7
|
-
var React = _interopRequireWildcard(require("react"));
|
|
8
7
|
var _reactNative = require("react-native");
|
|
9
8
|
var _normalize = require("../../utils/normalize");
|
|
10
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
11
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
12
9
|
const {
|
|
13
10
|
width: SCREEN_WIDTH,
|
|
14
11
|
height: SCREEN_HEIGHT
|
|
15
12
|
} = _reactNative.Dimensions.get('window');
|
|
16
13
|
const scaleW = SCREEN_WIDTH / 320;
|
|
17
14
|
const scaleH = SCREEN_HEIGHT / 920;
|
|
18
|
-
function InstructionsView(
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
} = _ref;
|
|
15
|
+
function InstructionsView({
|
|
16
|
+
onVerify,
|
|
17
|
+
onBack
|
|
18
|
+
}) {
|
|
23
19
|
return /*#__PURE__*/React.createElement(_reactNative.View, {
|
|
24
20
|
style: styles.container
|
|
25
21
|
}, /*#__PURE__*/React.createElement(_reactNative.TouchableOpacity, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["_reactNative","require","_normalize","width","SCREEN_WIDTH","height","SCREEN_HEIGHT","Dimensions","get","scaleW","scaleH","InstructionsView","onVerify","onBack","React","createElement","View","style","styles","container","TouchableOpacity","onPress","navigationBar","Image","source","leftArrow","boxImg","imgContainer","imgFace","boxBtn","Text","title","subtitle","intructions","rowInstructions","boxIcon","boxText","viewBtn","nextBtn","nextText","StyleSheet","create","flex","alignItems","backgroundColor","justifyContent","flexDirection","borderColor","borderWidth","borderRadius","paddingLeft","color","fontSize","normalize","marginTop","marginLeft","fontWeight","margin","description_one","textAlign","marginRight","boxInfo","paddingTop","Platform","OS","borderTopLeftRadius","borderTopRightRadius","paddingBottom","iconTop","aspectRatio","waveTop","box","marginVertical"],"sourceRoot":"../../../../src","sources":["screens/Liveness3D/InstructionsView.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -4,22 +4,18 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = PermissionView;
|
|
7
|
-
var React = _interopRequireWildcard(require("react"));
|
|
8
7
|
var _reactNative = require("react-native");
|
|
9
8
|
var _normalize = require("../utils/normalize");
|
|
10
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
11
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
12
9
|
const {
|
|
13
10
|
height: SCREEN_HEIGHT
|
|
14
11
|
} = _reactNative.Dimensions.get('window');
|
|
15
12
|
|
|
16
13
|
//const scaleW = SCREEN_WIDTH / 320;
|
|
17
14
|
const scaleH = SCREEN_HEIGHT / 920;
|
|
18
|
-
function PermissionView(
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
} = _ref;
|
|
15
|
+
function PermissionView({
|
|
16
|
+
onVerify,
|
|
17
|
+
onBack
|
|
18
|
+
}) {
|
|
23
19
|
return /*#__PURE__*/React.createElement(_reactNative.View, {
|
|
24
20
|
style: styles.container
|
|
25
21
|
}, /*#__PURE__*/React.createElement(_reactNative.View, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["_reactNative","require","_normalize","height","SCREEN_HEIGHT","Dimensions","get","scaleH","PermissionView","onVerify","onBack","React","createElement","View","style","styles","container","navigationBar","TouchableOpacity","onPress","Image","source","leftArrow","containerPerm","imgContainer","imgFace","intructions","Text","title","subtitle","nextBtn","nextText","StyleSheet","create","flex","alignItems","backgroundColor","width","justifyContent","rowInstructions","flexDirection","viewBtn","boxIcon","borderColor","borderWidth","borderRadius","boxText","paddingLeft","color","fontSize","marginTop","textAlign","marginBottom","fontWeight","margin","boxBtn","borderTopLeftRadius","borderTopRightRadius","paddingBottom","iconTop","marginLeft","normalize","waveTop","box","marginVertical"],"sourceRoot":"../../../src","sources":["screens/PermissionView.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -5,13 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.continueButton = void 0;
|
|
7
7
|
var _permissions = require("./permissions");
|
|
8
|
-
const continueButton =
|
|
9
|
-
return (0, _permissions.
|
|
10
|
-
return result;
|
|
11
|
-
}).catch(error => {
|
|
12
|
-
console.error(error);
|
|
13
|
-
return false;
|
|
14
|
-
});
|
|
8
|
+
const continueButton = () => {
|
|
9
|
+
return (0, _permissions.checkCameraPermissionGranted)();
|
|
15
10
|
};
|
|
16
11
|
exports.continueButton = continueButton;
|
|
17
12
|
//# sourceMappingURL=continueButton.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_permissions","require","continueButton","
|
|
1
|
+
{"version":3,"names":["_permissions","require","continueButton","checkCameraPermissionGranted","exports"],"sourceRoot":"../../../src","sources":["utils/continueButton.tsx"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAEO,MAAMC,cAAc,GAAGA,CAAA,KAAe;EAC3C,OAAO,IAAAC,yCAA4B,EAAC,CAAC;AACvC,CAAC;AAACC,OAAA,CAAAF,cAAA,GAAAA,cAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","normalize","size","scale","newSize","Platform","OS","Math","round","PixelRatio","roundToNearestPixel"],"sourceRoot":"../../../src","sources":["utils/normalize.tsx"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAEO,SAASC,SAASA,CAACC,IAAS,EAAEC,KAAU,EAAE;EAC/C,MAAMC,OAAO,GAAGF,IAAI,GAAGC,KAAK;EAC5B,IAAIE,qBAAQ,CAACC,EAAE,KAAK,KAAK,EAAE;IACzB,OAAOJ,IAAI;EACb,CAAC,MAAM;IACL,OAAOK,IAAI,CAACC,KAAK,CAACC,uBAAU,CAACC,mBAAmB,CAACN,OAAO,CAAC,CAAC,GAAG,EAAE;EACjE;AACF"}
|
|
1
|
+
{"version":3,"names":["_reactNative","require","normalize","size","scale","newSize","Platform","OS","Math","round","PixelRatio","roundToNearestPixel"],"sourceRoot":"../../../src","sources":["utils/normalize.tsx"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAEO,SAASC,SAASA,CAACC,IAAS,EAAEC,KAAU,EAAE;EAC/C,MAAMC,OAAO,GAAGF,IAAI,GAAGC,KAAK;EAC5B,IAAIE,qBAAQ,CAACC,EAAE,KAAK,KAAK,EAAE;IACzB,OAAOJ,IAAI;EACb,CAAC,MAAM;IACL,OAAOK,IAAI,CAACC,KAAK,CAACC,uBAAU,CAACC,mBAAmB,CAACN,OAAO,CAAC,CAAC,GAAG,EAAE;EACjE;AACF","ignoreList":[]}
|