@oiti/rn-liveness3d 3.4.0 → 5.0.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.
Files changed (467) hide show
  1. package/android/build.gradle +39 -107
  2. package/android/gradle.properties +5 -5
  3. package/android/src/main/AndroidManifest.xml +1 -8
  4. package/android/src/main/java/br/com/oiti/rnliveness3d/RnLiveness3dModule.kt +218 -192
  5. package/android/src/main/java/br/com/oiti/rnliveness3d/RnLiveness3dPackage.kt +25 -8
  6. package/android/src/main/java/br/com/oiti/rnliveness3d/theme/Liveness3DFonts.kt +32 -38
  7. package/android/src/main/java/br/com/oiti/rnliveness3d/theme/Liveness3DText.kt +5 -3
  8. package/android/src/main/java/br/com/oiti/rnliveness3d/theme/Liveness3DTheme.kt +229 -147
  9. package/android/src/res/font/sixty.ttf +0 -0
  10. package/ios/RnLiveness3d.h +5 -0
  11. package/ios/RnLiveness3d.mm +72 -0
  12. package/ios/{RnLiveness3d.swift → RnLiveness3dSwiftModule.swift} +131 -132
  13. package/lib/module/@types/ArgsType.js.map +1 -1
  14. package/lib/module/@types/FontsType.js.map +1 -1
  15. package/lib/module/@types/ResultType.js.map +1 -1
  16. package/lib/module/@types/ResultTypes.js.map +1 -1
  17. package/lib/module/@types/TextsType.js.map +1 -1
  18. package/lib/module/@types/ThemeType.js.map +1 -1
  19. package/lib/module/NativeRnLiveness3d.js +3 -0
  20. package/lib/module/NativeRnLiveness3d.js.map +1 -0
  21. package/lib/module/actions/BackButton.js +5 -6
  22. package/lib/module/actions/BackButton.js.map +1 -1
  23. package/lib/module/actions/ContinueButton.js +10 -10
  24. package/lib/module/actions/ContinueButton.js.map +1 -1
  25. package/lib/module/actions/PermissionButton.js +7 -8
  26. package/lib/module/actions/PermissionButton.js.map +1 -1
  27. package/lib/module/context/Liveness3DContext.js +10 -23
  28. package/lib/module/context/Liveness3DContext.js.map +1 -1
  29. package/lib/module/helpers/Liveness3DHelper.js +6 -7
  30. package/lib/module/helpers/Liveness3DHelper.js.map +1 -1
  31. package/lib/module/index.js +33 -120
  32. package/lib/module/index.js.map +1 -1
  33. package/lib/module/interfaces/Liveness3DHelper.js.map +1 -1
  34. package/lib/module/interfaces/OitiBackButtonInterface.js.map +1 -1
  35. package/lib/module/interfaces/OitiContinueButton.js.map +1 -1
  36. package/lib/module/interfaces/OitiPermissionButtonInterface.js.map +1 -1
  37. package/lib/module/screens/Liveness3D/InstructionsView.js +4 -6
  38. package/lib/module/screens/Liveness3D/InstructionsView.js.map +1 -1
  39. package/lib/module/screens/PermissionView.js +4 -6
  40. package/lib/module/screens/PermissionView.js.map +1 -1
  41. package/lib/module/utils/continueButton.js +3 -8
  42. package/lib/module/utils/continueButton.js.map +1 -1
  43. package/lib/module/utils/normalize.js.map +1 -1
  44. package/lib/module/utils/permissions.js +8 -17
  45. package/lib/module/utils/permissions.js.map +1 -1
  46. package/lib/module/utils/screenStore.js.map +1 -1
  47. package/oiti-rn-liveness3d.podspec +6 -22
  48. package/package.json +58 -49
  49. package/src/@types/ArgsType.ts +3 -4
  50. package/src/@types/ResultTypes.ts +3 -1
  51. package/src/NativeRnLiveness3d.ts +9 -0
  52. package/src/actions/BackButton.tsx +1 -1
  53. package/src/actions/ContinueButton.tsx +6 -5
  54. package/src/actions/PermissionButton.tsx +3 -3
  55. package/src/context/Liveness3DContext.tsx +11 -24
  56. package/src/helpers/Liveness3DHelper.tsx +1 -1
  57. package/src/index.tsx +27 -131
  58. package/src/interfaces/Liveness3DHelper.tsx +4 -2
  59. package/src/screens/Liveness3D/InstructionsView.tsx +0 -2
  60. package/src/screens/PermissionView.tsx +0 -1
  61. package/src/utils/continueButton.tsx +3 -10
  62. package/src/utils/permissions.tsx +9 -26
  63. package/android/settings.gradle +0 -6
  64. package/ios/Podfile +0 -13
  65. package/ios/Podfile.lock +0 -38
  66. package/ios/Pods/Manifest.lock +0 -38
  67. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/Info.plist +0 -46
  68. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Headers/OICommons-Swift.h +0 -327
  69. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Headers/OICommons.h +0 -15
  70. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Info.plist +0 -0
  71. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Inter-Bold.otf +0 -0
  72. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Inter-Medium.otf +0 -0
  73. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Inter-Regular.otf +0 -0
  74. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios.abi.json +0 -9
  75. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -1818
  76. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  77. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios.swiftinterface +0 -1818
  78. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Modules/module.modulemap +0 -11
  79. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/OICommons +0 -0
  80. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Ubuntu-Bold.otf +0 -0
  81. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Ubuntu-Medium.otf +0 -0
  82. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/OICommons.framework/Ubuntu-Regular.otf +0 -0
  83. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/dSYMs/OICommons.framework.dSYM/Contents/Info.plist +0 -20
  84. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64/dSYMs/OICommons.framework.dSYM/Contents/Resources/DWARF/OICommons +0 -0
  85. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Headers/OICommons-Swift.h +0 -650
  86. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Headers/OICommons.h +0 -15
  87. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Info.plist +0 -0
  88. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Inter-Bold.otf +0 -0
  89. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Inter-Medium.otf +0 -0
  90. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Inter-Regular.otf +0 -0
  91. 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
  92. 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
  93. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  94. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/OICommons.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -1818
  95. 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
  96. 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
  97. 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
  98. 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
  99. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Modules/module.modulemap +0 -11
  100. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/OICommons +0 -0
  101. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Ubuntu-Bold.otf +0 -0
  102. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Ubuntu-Medium.otf +0 -0
  103. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/Ubuntu-Regular.otf +0 -0
  104. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework/ios-arm64_x86_64-simulator/OICommons.framework/_CodeSignature/CodeResources +0 -311
  105. package/ios/Pods/OICommons/Frameworks/OICommons.xcframework.zip +0 -0
  106. package/ios/Pods/OICommons/README.md +0 -1
  107. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/Info.plist +0 -46
  108. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Assets.car +0 -0
  109. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Headers/OIComponents-Swift.h +0 -455
  110. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Headers/OIComponents.h +0 -18
  111. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Info.plist +0 -0
  112. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios.abi.json +0 -9
  113. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -732
  114. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  115. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios.swiftinterface +0 -732
  116. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/Modules/module.modulemap +0 -11
  117. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/OIComponents.framework/OIComponents +0 -0
  118. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/dSYMs/OIComponents.framework.dSYM/Contents/Info.plist +0 -20
  119. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64/dSYMs/OIComponents.framework.dSYM/Contents/Resources/DWARF/OIComponents +0 -0
  120. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Assets.car +0 -0
  121. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Headers/OIComponents-Swift.h +0 -906
  122. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Headers/OIComponents.h +0 -18
  123. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Info.plist +0 -0
  124. 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
  125. 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
  126. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  127. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/OIComponents.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -732
  128. 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
  129. 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
  130. 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
  131. 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
  132. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/Modules/module.modulemap +0 -11
  133. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/OIComponents +0 -0
  134. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework/ios-arm64_x86_64-simulator/OIComponents.framework/_CodeSignature/CodeResources +0 -256
  135. package/ios/Pods/OIComponents/Frameworks/OIComponents.xcframework.zip +0 -0
  136. package/ios/Pods/OIComponents/README.md +0 -1
  137. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/Info.plist +0 -46
  138. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Assets.car +0 -0
  139. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Headers/OILiveness3D-Swift.h +0 -343
  140. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Headers/OILiveness3D.h +0 -18
  141. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Info.plist +0 -0
  142. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/Por_favor_pressione_o_botao_para_iniciar.mp3 +0 -0
  143. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/Toque_duas_veezs_em_qualquer_lugar_da_tela.mp3 +0 -0
  144. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/carregando.mp3 +0 -0
  145. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/escaneamento_feito_com_sucesso.mp3 +0 -0
  146. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/por_favor_chegue_mais_perto.mp3 +0 -0
  147. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/por_favor_tente_novamente.mp3 +0 -0
  148. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/prepare-se_para_seu_reconhecimento_facial.mp3 +0 -0
  149. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/rosto_muito_longe.mp3 +0 -0
  150. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/segure_firme.mp3 +0 -0
  151. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/suporte_vocal_desligado.mp3 +0 -0
  152. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Media/suporte_vocal_ligado.mp3 +0 -0
  153. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios.abi.json +0 -9
  154. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -226
  155. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  156. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios.swiftinterface +0 -226
  157. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/Modules/module.modulemap +0 -11
  158. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/OILiveness3D.framework/OILiveness3D +0 -0
  159. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Info.plist +0 -20
  160. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/DWARF/OILiveness3D +0 -0
  161. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/Swift/aarch64/OICommons.swiftinterface +0 -1818
  162. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/Swift/aarch64/OIComponents.swiftinterface +0 -732
  163. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/Swift/aarch64/OINetwork.swiftinterface +0 -144
  164. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64/dSYMs/OILiveness3D.framework.dSYM/Contents/Resources/Swift/aarch64/OISecurity.swiftinterface +0 -164
  165. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Assets.car +0 -0
  166. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Headers/OILiveness3D-Swift.h +0 -682
  167. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Headers/OILiveness3D.h +0 -18
  168. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Info.plist +0 -0
  169. 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
  170. 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
  171. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/carregando.mp3 +0 -0
  172. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/escaneamento_feito_com_sucesso.mp3 +0 -0
  173. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/por_favor_chegue_mais_perto.mp3 +0 -0
  174. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/por_favor_tente_novamente.mp3 +0 -0
  175. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/prepare-se_para_seu_reconhecimento_facial.mp3 +0 -0
  176. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/rosto_muito_longe.mp3 +0 -0
  177. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/segure_firme.mp3 +0 -0
  178. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/suporte_vocal_desligado.mp3 +0 -0
  179. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Media/suporte_vocal_ligado.mp3 +0 -0
  180. 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
  181. 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
  182. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  183. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/OILiveness3D.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -226
  184. 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
  185. 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
  186. 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
  187. 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
  188. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/Modules/module.modulemap +0 -11
  189. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/OILiveness3D +0 -0
  190. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework/ios-arm64_x86_64-simulator/OILiveness3D.framework/_CodeSignature/CodeResources +0 -377
  191. package/ios/Pods/OILiveness3D/Framework/OILiveness3D.xcframework.zip +0 -0
  192. package/ios/Pods/OILiveness3D/README.md +0 -32
  193. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/Info.plist +0 -44
  194. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Assets.car +0 -0
  195. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/FaceTecSDK +0 -0
  196. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/GenericGuidanceContentLayout.nib +0 -0
  197. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Headers/FaceTecPublicApi.h +0 -1932
  198. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Headers/FaceTecPublicStringKeys.h +0 -105
  199. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Headers/FaceTecSDK.h +0 -16
  200. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Info.plist +0 -0
  201. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Modules/module.modulemap +0 -6
  202. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/PrivacyInfo.xcprivacy +0 -29
  203. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/ReadyScreenGuidanceContentLayout.nib +0 -0
  204. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/RetryScreenGuidanceContentLayout.nib +0 -0
  205. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/SharedGuidanceLayout.nib +0 -0
  206. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/9Uo-4b-JiE-view-Ae0-rb-UqS.nib +0 -0
  207. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/CJ6-MX-bJp-view-8JL-Rc-0g1.nib +0 -0
  208. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/FaceScanViewController.nib +0 -0
  209. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/FaceTecAdditionalReviewViewController.nib +0 -0
  210. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/FaceTecIDFeedbackViewController.nib +0 -0
  211. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/FaceTecOCRConfirmationViewController.nib +0 -0
  212. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/IDCaptureViewController.nib +0 -0
  213. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/IDSelectionViewController.nib +0 -0
  214. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/Info.plist +0 -0
  215. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/Pyw-6G-JSY-view-Zue-Eo-Q2U.nib +0 -0
  216. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/QWA-8Y-vUM-view-wJB-Z5-eD2.nib +0 -0
  217. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/alz-Ia-X3d-view-IKu-EI-Hug.nib +0 -0
  218. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/Storyboard.storyboardc/l2Q-cc-kD8-view-UUy-6c-meu.nib +0 -0
  219. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/af.lproj/FaceTec.strings +0 -0
  220. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/ar.lproj/FaceTec.strings +0 -0
  221. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/attributions.txt +0 -137
  222. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/1f5b84f51ce0fcfbb76e904b7bcaa7560f601e1394a0b29367a09385312287eb +0 -0
  223. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/2b075ac1a6132b5b8a4c9ef0ba6b0cd84db7838aca9a000e50d907f40770a4ab +0 -0
  224. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/59cc2a9af81aaca2376702c2490650f4da2775fa673274db98aad41b7ef101c0 +0 -0
  225. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/5b63e98b991aedabb60665503384f30bffd939decf9433883b30b78011ee501a +0 -0
  226. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/66388dc76dc16bc6b76b682edd218a575bf45b9b +0 -0
  227. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/6b3133f0f39ff89a2a169d61176ee17cafacc5e288f334e2b64ee82892d11ccd +0 -0
  228. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/9077d16225f9314163ef1e7db6fc7d4088bb903d134bd95f23d5591ca4dfbfca +0 -0
  229. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/a74f2afb9d20f2375ccbd14e67c094b85c89ceb608f7cf8ae04f3f646a6c5672 +0 -0
  230. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/b501893e75f62ee1707643e35b21109927b07ed5b202321c961b424cbc2e4695 +0 -0
  231. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/dbd7a353f0130bb983d6ba05917e9be991d70e8f028df4b74e30bc6497ef7f71 +0 -0
  232. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/f2.xml +0 -0
  233. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/fd6d368a5658496536e2bfae170d1b823a3629b242cafc09784bfba4e56d8c80 +0 -0
  234. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/marker +0 -0
  235. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/cache_uyertuazlkxcjrlwkejr/39bb748b334003e3fa/vu0ilin6we3lrzo5f83f7qs2jul4aq7v4aoynrmch8zfvpi8ezrfyafa4t0fx87l +0 -0
  236. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/de.lproj/FaceTec.strings +0 -0
  237. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/el.lproj/FaceTec.strings +0 -0
  238. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/en.lproj/FaceTec.strings +0 -0
  239. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/es.lproj/FaceTec.strings +0 -0
  240. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/fr.lproj/FaceTec.strings +0 -0
  241. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/kk.lproj/FaceTec.strings +0 -0
  242. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/nb.lproj/FaceTec.strings +0 -0
  243. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/pt-BR.lproj/FaceTec.strings +0 -0
  244. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/ru.lproj/FaceTec.strings +0 -0
  245. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64/FaceTecSDK.framework/strip-unused-architectures-from-target.sh +0 -62
  246. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/FaceTecSDK +0 -0
  247. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Headers/FaceTecPublicApi.h +0 -1932
  248. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Headers/FaceTecPublicStringKeys.h +0 -105
  249. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Headers/FaceTecSDK.h +0 -16
  250. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Info.plist +0 -0
  251. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/Modules/module.modulemap +0 -6
  252. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework/ios-arm64_x86_64-simulator/FaceTecSDK.framework/_CodeSignature/CodeResources +0 -146
  253. package/ios/Pods/OILiveness3D_FT/Framework/FaceTecSDK.xcframework.zip +0 -0
  254. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/Info.plist +0 -46
  255. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Headers/OINetwork-Swift.h +0 -312
  256. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Headers/OINetwork.h +0 -15
  257. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Info.plist +0 -0
  258. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios.abi.json +0 -9
  259. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -144
  260. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  261. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios.swiftinterface +0 -144
  262. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/Modules/module.modulemap +0 -11
  263. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/OINetwork.framework/OINetwork +0 -0
  264. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/dSYMs/OINetwork.framework.dSYM/Contents/Info.plist +0 -20
  265. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/dSYMs/OINetwork.framework.dSYM/Contents/Resources/DWARF/OINetwork +0 -0
  266. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64/dSYMs/OINetwork.framework.dSYM/Contents/Resources/Swift/aarch64/OICommons.swiftinterface +0 -1818
  267. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Headers/OINetwork-Swift.h +0 -620
  268. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Headers/OINetwork.h +0 -15
  269. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Info.plist +0 -0
  270. 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
  271. 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
  272. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  273. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/OINetwork.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -144
  274. 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
  275. 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
  276. 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
  277. 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
  278. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/Modules/module.modulemap +0 -11
  279. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/OINetwork +0 -0
  280. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework/ios-arm64_x86_64-simulator/OINetwork.framework/_CodeSignature/CodeResources +0 -245
  281. package/ios/Pods/OINetwork/Frameworks/OINetwork.xcframework.zip +0 -0
  282. package/ios/Pods/OINetwork/README.md +0 -1
  283. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/Info.plist +0 -46
  284. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Headers/OISecurity-Swift.h +0 -311
  285. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Headers/OISecurity.h +0 -16
  286. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Info.plist +0 -0
  287. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios.abi.json +0 -9
  288. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios.private.swiftinterface +0 -164
  289. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  290. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios.swiftinterface +0 -164
  291. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/Modules/module.modulemap +0 -11
  292. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/OISecurity +0 -0
  293. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/OISecurity.framework/PrivacyInfo.xcprivacy +0 -37
  294. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/dSYMs/OISecurity.framework.dSYM/Contents/Info.plist +0 -20
  295. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/dSYMs/OISecurity.framework.dSYM/Contents/Resources/DWARF/OISecurity +0 -0
  296. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/dSYMs/OISecurity.framework.dSYM/Contents/Resources/Swift/aarch64/OICommons.swiftinterface +0 -1818
  297. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64/dSYMs/OISecurity.framework.dSYM/Contents/Resources/Swift/aarch64/OINetwork.swiftinterface +0 -144
  298. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Headers/OISecurity-Swift.h +0 -618
  299. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Headers/OISecurity.h +0 -16
  300. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Info.plist +0 -0
  301. 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
  302. 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
  303. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  304. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/OISecurity.swiftmodule/arm64-apple-ios-simulator.swiftinterface +0 -164
  305. 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
  306. 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
  307. 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
  308. 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
  309. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/Modules/module.modulemap +0 -11
  310. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/OISecurity +0 -0
  311. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/PrivacyInfo.xcprivacy +0 -37
  312. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework/ios-arm64_x86_64-simulator/OISecurity.framework/_CodeSignature/CodeResources +0 -256
  313. package/ios/Pods/OISecurity/Frameworks/OISecurity.xcframework.zip +0 -0
  314. package/ios/Pods/OISecurity/README.md +0 -1
  315. package/ios/Pods/Pods.xcodeproj/project.pbxproj +0 -1239
  316. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OICommons.xcscheme +0 -58
  317. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OIComponents.xcscheme +0 -58
  318. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OILiveness3D.xcscheme +0 -58
  319. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OILiveness3D_FT.xcscheme +0 -58
  320. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OINetwork.xcscheme +0 -58
  321. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/OISecurity.xcscheme +0 -58
  322. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/Pods-RnLiveness3d.xcscheme +0 -58
  323. package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielcatelligoulart.xcuserdatad/xcschemes/xcschememanagement.plist +0 -46
  324. package/ios/Pods/Target Support Files/OICommons/OICommons-xcframeworks.sh +0 -121
  325. package/ios/Pods/Target Support Files/OICommons/OICommons.debug.xcconfig +0 -15
  326. package/ios/Pods/Target Support Files/OICommons/OICommons.release.xcconfig +0 -15
  327. package/ios/Pods/Target Support Files/OIComponents/OIComponents-xcframeworks.sh +0 -121
  328. package/ios/Pods/Target Support Files/OIComponents/OIComponents.debug.xcconfig +0 -15
  329. package/ios/Pods/Target Support Files/OIComponents/OIComponents.release.xcconfig +0 -15
  330. package/ios/Pods/Target Support Files/OILiveness3D/OILiveness3D-xcframeworks.sh +0 -121
  331. package/ios/Pods/Target Support Files/OILiveness3D/OILiveness3D.debug.xcconfig +0 -16
  332. package/ios/Pods/Target Support Files/OILiveness3D/OILiveness3D.release.xcconfig +0 -16
  333. package/ios/Pods/Target Support Files/OILiveness3D_FT/OILiveness3D_FT-xcframeworks.sh +0 -121
  334. package/ios/Pods/Target Support Files/OILiveness3D_FT/OILiveness3D_FT.debug.xcconfig +0 -13
  335. package/ios/Pods/Target Support Files/OILiveness3D_FT/OILiveness3D_FT.release.xcconfig +0 -13
  336. package/ios/Pods/Target Support Files/OINetwork/OINetwork-xcframeworks.sh +0 -121
  337. package/ios/Pods/Target Support Files/OINetwork/OINetwork.debug.xcconfig +0 -16
  338. package/ios/Pods/Target Support Files/OINetwork/OINetwork.release.xcconfig +0 -16
  339. package/ios/Pods/Target Support Files/OISecurity/OISecurity-xcframeworks.sh +0 -121
  340. package/ios/Pods/Target Support Files/OISecurity/OISecurity.debug.xcconfig +0 -16
  341. package/ios/Pods/Target Support Files/OISecurity/OISecurity.release.xcconfig +0 -16
  342. package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-Info.plist +0 -26
  343. package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-acknowledgements.markdown +0 -23
  344. package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-acknowledgements.plist +0 -79
  345. package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-dummy.m +0 -5
  346. package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-umbrella.h +0 -16
  347. package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d.debug.xcconfig +0 -14
  348. package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d.modulemap +0 -6
  349. package/ios/Pods/Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d.release.xcconfig +0 -14
  350. package/ios/RnLiveness3d-Bridging-Header.h +0 -2
  351. package/ios/RnLiveness3d.m +0 -34
  352. package/ios/RnLiveness3d.xcodeproj/project.pbxproj +0 -337
  353. package/ios/RnLiveness3d.xcodeproj/xcshareddata/xcschemes/RnLiveness3d.xcscheme +0 -80
  354. package/ios/RnLiveness3d.xcworkspace/contents.xcworkspacedata +0 -10
  355. package/ios/RnLiveness3d.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  356. package/ios/info.plist +0 -8
  357. package/lib/commonjs/@types/ArgsType.js +0 -6
  358. package/lib/commonjs/@types/ArgsType.js.map +0 -1
  359. package/lib/commonjs/@types/FontsType.js +0 -2
  360. package/lib/commonjs/@types/FontsType.js.map +0 -1
  361. package/lib/commonjs/@types/ResultType.js +0 -2
  362. package/lib/commonjs/@types/ResultType.js.map +0 -1
  363. package/lib/commonjs/@types/ResultTypes.js +0 -6
  364. package/lib/commonjs/@types/ResultTypes.js.map +0 -1
  365. package/lib/commonjs/@types/TextsType.js +0 -2
  366. package/lib/commonjs/@types/TextsType.js.map +0 -1
  367. package/lib/commonjs/@types/ThemeType.js +0 -2
  368. package/lib/commonjs/@types/ThemeType.js.map +0 -1
  369. package/lib/commonjs/actions/BackButton.js +0 -35
  370. package/lib/commonjs/actions/BackButton.js.map +0 -1
  371. package/lib/commonjs/actions/ContinueButton.js +0 -43
  372. package/lib/commonjs/actions/ContinueButton.js.map +0 -1
  373. package/lib/commonjs/actions/PermissionButton.js +0 -35
  374. package/lib/commonjs/actions/PermissionButton.js.map +0 -1
  375. package/lib/commonjs/assets/fonts/Ubuntu-Bold.ttf +0 -0
  376. package/lib/commonjs/assets/fonts/Ubuntu-BoldItalic.ttf +0 -0
  377. package/lib/commonjs/assets/fonts/Ubuntu-Italic.ttf +0 -0
  378. package/lib/commonjs/assets/fonts/Ubuntu-Light.ttf +0 -0
  379. package/lib/commonjs/assets/fonts/Ubuntu-LightItalic.ttf +0 -0
  380. package/lib/commonjs/assets/fonts/Ubuntu-Medium.ttf +0 -0
  381. package/lib/commonjs/assets/fonts/Ubuntu-MediumItalic.ttf +0 -0
  382. package/lib/commonjs/assets/fonts/Ubuntu-Regular.ttf +0 -0
  383. package/lib/commonjs/assets/images/acessories.png +0 -0
  384. package/lib/commonjs/assets/images/camera.png +0 -0
  385. package/lib/commonjs/assets/images/camera_alt.png +0 -0
  386. package/lib/commonjs/assets/images/face.png +0 -0
  387. package/lib/commonjs/assets/images/illumination.png +0 -0
  388. package/lib/commonjs/assets/images/imgOp.png +0 -0
  389. package/lib/commonjs/assets/images/img_face.png +0 -0
  390. package/lib/commonjs/assets/images/left-arrow-b.png +0 -0
  391. package/lib/commonjs/assets/images/left-arrow.png +0 -0
  392. package/lib/commonjs/assets/images/lightbulb_outline.png +0 -0
  393. package/lib/commonjs/assets/images/padlock.png +0 -0
  394. package/lib/commonjs/assets/images/rigth-arrow.png +0 -0
  395. package/lib/commonjs/assets/images/scan-facial.png +0 -0
  396. package/lib/commonjs/assets/images/wave_bg.png +0 -0
  397. package/lib/commonjs/assets/images/wave_bg2.png +0 -0
  398. package/lib/commonjs/context/Liveness3DContext.js +0 -104
  399. package/lib/commonjs/context/Liveness3DContext.js.map +0 -1
  400. package/lib/commonjs/helpers/Liveness3DHelper.js +0 -34
  401. package/lib/commonjs/helpers/Liveness3DHelper.js.map +0 -1
  402. package/lib/commonjs/index.js +0 -223
  403. package/lib/commonjs/index.js.map +0 -1
  404. package/lib/commonjs/interfaces/Liveness3DHelper.js +0 -6
  405. package/lib/commonjs/interfaces/Liveness3DHelper.js.map +0 -1
  406. package/lib/commonjs/interfaces/OitiBackButtonInterface.js +0 -6
  407. package/lib/commonjs/interfaces/OitiBackButtonInterface.js.map +0 -1
  408. package/lib/commonjs/interfaces/OitiContinueButton.js +0 -6
  409. package/lib/commonjs/interfaces/OitiContinueButton.js.map +0 -1
  410. package/lib/commonjs/interfaces/OitiPermissionButtonInterface.js +0 -6
  411. package/lib/commonjs/interfaces/OitiPermissionButtonInterface.js.map +0 -1
  412. package/lib/commonjs/screens/Liveness3D/InstructionsView.js +0 -209
  413. package/lib/commonjs/screens/Liveness3D/InstructionsView.js.map +0 -1
  414. package/lib/commonjs/screens/PermissionView.js +0 -177
  415. package/lib/commonjs/screens/PermissionView.js.map +0 -1
  416. package/lib/commonjs/utils/continueButton.js +0 -17
  417. package/lib/commonjs/utils/continueButton.js.map +0 -1
  418. package/lib/commonjs/utils/normalize.js +0 -16
  419. package/lib/commonjs/utils/normalize.js.map +0 -1
  420. package/lib/commonjs/utils/permissions.js +0 -30
  421. package/lib/commonjs/utils/permissions.js.map +0 -1
  422. package/lib/commonjs/utils/screenStore.js +0 -12
  423. package/lib/commonjs/utils/screenStore.js.map +0 -1
  424. package/lib/typescript/@types/ArgsType.d.ts +0 -19
  425. package/lib/typescript/@types/ArgsType.d.ts.map +0 -1
  426. package/lib/typescript/@types/FontsType.d.ts +0 -12
  427. package/lib/typescript/@types/FontsType.d.ts.map +0 -1
  428. package/lib/typescript/@types/ResultType.d.ts +0 -13
  429. package/lib/typescript/@types/ResultType.d.ts.map +0 -1
  430. package/lib/typescript/@types/ResultTypes.d.ts +0 -6
  431. package/lib/typescript/@types/ResultTypes.d.ts.map +0 -1
  432. package/lib/typescript/@types/TextsType.d.ts +0 -36
  433. package/lib/typescript/@types/TextsType.d.ts.map +0 -1
  434. package/lib/typescript/@types/ThemeType.d.ts +0 -48
  435. package/lib/typescript/@types/ThemeType.d.ts.map +0 -1
  436. package/lib/typescript/actions/BackButton.d.ts +0 -4
  437. package/lib/typescript/actions/BackButton.d.ts.map +0 -1
  438. package/lib/typescript/actions/ContinueButton.d.ts +0 -4
  439. package/lib/typescript/actions/ContinueButton.d.ts.map +0 -1
  440. package/lib/typescript/actions/PermissionButton.d.ts +0 -4
  441. package/lib/typescript/actions/PermissionButton.d.ts.map +0 -1
  442. package/lib/typescript/context/Liveness3DContext.d.ts +0 -28
  443. package/lib/typescript/context/Liveness3DContext.d.ts.map +0 -1
  444. package/lib/typescript/helpers/Liveness3DHelper.d.ts +0 -4
  445. package/lib/typescript/helpers/Liveness3DHelper.d.ts.map +0 -1
  446. package/lib/typescript/index.d.ts +0 -32
  447. package/lib/typescript/index.d.ts.map +0 -1
  448. package/lib/typescript/interfaces/Liveness3DHelper.d.ts +0 -7
  449. package/lib/typescript/interfaces/Liveness3DHelper.d.ts.map +0 -1
  450. package/lib/typescript/interfaces/OitiBackButtonInterface.d.ts +0 -6
  451. package/lib/typescript/interfaces/OitiBackButtonInterface.d.ts.map +0 -1
  452. package/lib/typescript/interfaces/OitiContinueButton.d.ts +0 -6
  453. package/lib/typescript/interfaces/OitiContinueButton.d.ts.map +0 -1
  454. package/lib/typescript/interfaces/OitiPermissionButtonInterface.d.ts +0 -6
  455. package/lib/typescript/interfaces/OitiPermissionButtonInterface.d.ts.map +0 -1
  456. package/lib/typescript/screens/Liveness3D/InstructionsView.d.ts +0 -6
  457. package/lib/typescript/screens/Liveness3D/InstructionsView.d.ts.map +0 -1
  458. package/lib/typescript/screens/PermissionView.d.ts +0 -6
  459. package/lib/typescript/screens/PermissionView.d.ts.map +0 -1
  460. package/lib/typescript/utils/continueButton.d.ts +0 -2
  461. package/lib/typescript/utils/continueButton.d.ts.map +0 -1
  462. package/lib/typescript/utils/normalize.d.ts +0 -2
  463. package/lib/typescript/utils/normalize.d.ts.map +0 -1
  464. package/lib/typescript/utils/permissions.d.ts +0 -4
  465. package/lib/typescript/utils/permissions.d.ts.map +0 -1
  466. package/lib/typescript/utils/screenStore.d.ts +0 -5
  467. package/lib/typescript/utils/screenStore.d.ts.map +0 -1
@@ -1,1239 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXAggregateTarget section */
10
- 13BBBA75F4A0689D55192A76F9E01166 /* OILiveness3D */ = {
11
- isa = PBXAggregateTarget;
12
- buildConfigurationList = 4C4AE07C80BAE951082800879627A0C9 /* Build configuration list for PBXAggregateTarget "OILiveness3D" */;
13
- buildPhases = (
14
- B0E1353FC8CCD959DF77B0731804E52D /* [CP] Copy XCFrameworks */,
15
- );
16
- dependencies = (
17
- 4231759EF1809885B14E447BB3F526B2 /* PBXTargetDependency */,
18
- C03B4A13725EF5282A86FD27748DDA1F /* PBXTargetDependency */,
19
- CC7FD9AED687F7FDBA0D464E5586D84A /* PBXTargetDependency */,
20
- ACDF92C6DB066ADB5580ED56F30518D2 /* PBXTargetDependency */,
21
- 480231FE5B9838A8A0312FB270C28B33 /* PBXTargetDependency */,
22
- );
23
- name = OILiveness3D;
24
- };
25
- 1E2E843BEB5FDC71DDCCF52C06A9113F /* OILiveness3D_FT */ = {
26
- isa = PBXAggregateTarget;
27
- buildConfigurationList = 7AE857F458FB26EBF3E74EB8305AC3C3 /* Build configuration list for PBXAggregateTarget "OILiveness3D_FT" */;
28
- buildPhases = (
29
- 7206869F0E2E64F708FD5DB1CA00754B /* [CP] Copy XCFrameworks */,
30
- );
31
- dependencies = (
32
- );
33
- name = OILiveness3D_FT;
34
- };
35
- 35BE567DDB9CCB9936E13E7CFB11E18C /* OISecurity */ = {
36
- isa = PBXAggregateTarget;
37
- buildConfigurationList = 5AFADEB457608B1804417AF5CF1D9726 /* Build configuration list for PBXAggregateTarget "OISecurity" */;
38
- buildPhases = (
39
- 9B7A17864BC245897E0B6B1022FE84A8 /* [CP] Copy XCFrameworks */,
40
- );
41
- dependencies = (
42
- BFD6E27DEA8D11CAF600404BF563F47E /* PBXTargetDependency */,
43
- );
44
- name = OISecurity;
45
- };
46
- C803281F06AD29D83614AB8CE6228DD8 /* OIComponents */ = {
47
- isa = PBXAggregateTarget;
48
- buildConfigurationList = 016FF34A712E675401E19A5F437506F5 /* Build configuration list for PBXAggregateTarget "OIComponents" */;
49
- buildPhases = (
50
- FADD044AEA149F886C36C380519CF676 /* [CP] Copy XCFrameworks */,
51
- );
52
- dependencies = (
53
- );
54
- name = OIComponents;
55
- };
56
- D2C4ECC520D5BF1EA895F6C928B5373C /* OINetwork */ = {
57
- isa = PBXAggregateTarget;
58
- buildConfigurationList = 9DEABDDECBAABBE1D09C130F82F6A004 /* Build configuration list for PBXAggregateTarget "OINetwork" */;
59
- buildPhases = (
60
- 2B254A184310A5DEDB344513F1989EC0 /* [CP] Copy XCFrameworks */,
61
- );
62
- dependencies = (
63
- D6CAAD1D7847F78CACFA4BC1D8027B67 /* PBXTargetDependency */,
64
- );
65
- name = OINetwork;
66
- };
67
- D3F6432D69E9E4C1D6D9CF583693B6F4 /* OICommons */ = {
68
- isa = PBXAggregateTarget;
69
- buildConfigurationList = AA9DA7DAB4641F57A75D2EF8F498AF5A /* Build configuration list for PBXAggregateTarget "OICommons" */;
70
- buildPhases = (
71
- 9945FF39CEBBCCDB55188F600BA289E1 /* [CP] Copy XCFrameworks */,
72
- );
73
- dependencies = (
74
- );
75
- name = OICommons;
76
- };
77
- /* End PBXAggregateTarget section */
78
-
79
- /* Begin PBXBuildFile section */
80
- 0A5AEF64C11AA91103E37A350CB86ABB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; };
81
- 97098815FBD5BCBCC7AA19B448F29210 /* Pods-RnLiveness3d-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C16049A3088FBFF488318941D3A43A /* Pods-RnLiveness3d-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
82
- A42879F900BB183EFB5251123EF98FAA /* Pods-RnLiveness3d-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A3BEC5CA88075074DE010411312FC384 /* Pods-RnLiveness3d-dummy.m */; };
83
- /* End PBXBuildFile section */
84
-
85
- /* Begin PBXContainerItemProxy section */
86
- 100CB10599D3D5634992A38C7F111512 /* PBXContainerItemProxy */ = {
87
- isa = PBXContainerItemProxy;
88
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
89
- proxyType = 1;
90
- remoteGlobalIDString = D2C4ECC520D5BF1EA895F6C928B5373C;
91
- remoteInfo = OINetwork;
92
- };
93
- 2884EE21028BF0D83DEFE6F3FB5970A7 /* PBXContainerItemProxy */ = {
94
- isa = PBXContainerItemProxy;
95
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
96
- proxyType = 1;
97
- remoteGlobalIDString = D3F6432D69E9E4C1D6D9CF583693B6F4;
98
- remoteInfo = OICommons;
99
- };
100
- 316EF7AB613C7A29F981F2C04AEA0765 /* PBXContainerItemProxy */ = {
101
- isa = PBXContainerItemProxy;
102
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
103
- proxyType = 1;
104
- remoteGlobalIDString = 35BE567DDB9CCB9936E13E7CFB11E18C;
105
- remoteInfo = OISecurity;
106
- };
107
- 3486E61FA490A039CE0CDC7C8FB93C18 /* PBXContainerItemProxy */ = {
108
- isa = PBXContainerItemProxy;
109
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
110
- proxyType = 1;
111
- remoteGlobalIDString = 1E2E843BEB5FDC71DDCCF52C06A9113F;
112
- remoteInfo = OILiveness3D_FT;
113
- };
114
- 7B19C7E85E1B00CE41A9175938A8CE1B /* PBXContainerItemProxy */ = {
115
- isa = PBXContainerItemProxy;
116
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
117
- proxyType = 1;
118
- remoteGlobalIDString = C803281F06AD29D83614AB8CE6228DD8;
119
- remoteInfo = OIComponents;
120
- };
121
- 7FA765221FE51E5EFE50B24FF126A71B /* PBXContainerItemProxy */ = {
122
- isa = PBXContainerItemProxy;
123
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
124
- proxyType = 1;
125
- remoteGlobalIDString = C803281F06AD29D83614AB8CE6228DD8;
126
- remoteInfo = OIComponents;
127
- };
128
- 8B2DAFF5763DBE123BCDFF8BF21D1179 /* PBXContainerItemProxy */ = {
129
- isa = PBXContainerItemProxy;
130
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
131
- proxyType = 1;
132
- remoteGlobalIDString = D3F6432D69E9E4C1D6D9CF583693B6F4;
133
- remoteInfo = OICommons;
134
- };
135
- 8F410DA5933B3F71F3D9B3109B6CCABA /* PBXContainerItemProxy */ = {
136
- isa = PBXContainerItemProxy;
137
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
138
- proxyType = 1;
139
- remoteGlobalIDString = 1E2E843BEB5FDC71DDCCF52C06A9113F;
140
- remoteInfo = OILiveness3D_FT;
141
- };
142
- 98764618277CCDF2F6FFDE9030C4F724 /* PBXContainerItemProxy */ = {
143
- isa = PBXContainerItemProxy;
144
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
145
- proxyType = 1;
146
- remoteGlobalIDString = D2C4ECC520D5BF1EA895F6C928B5373C;
147
- remoteInfo = OINetwork;
148
- };
149
- 9F5174F8B7B31079F907AFDFCBC77455 /* PBXContainerItemProxy */ = {
150
- isa = PBXContainerItemProxy;
151
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
152
- proxyType = 1;
153
- remoteGlobalIDString = D2C4ECC520D5BF1EA895F6C928B5373C;
154
- remoteInfo = OINetwork;
155
- };
156
- B280F060070BD5AF3209473A3EB718FB /* PBXContainerItemProxy */ = {
157
- isa = PBXContainerItemProxy;
158
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
159
- proxyType = 1;
160
- remoteGlobalIDString = 35BE567DDB9CCB9936E13E7CFB11E18C;
161
- remoteInfo = OISecurity;
162
- };
163
- CCC42602F08CD0B6CD6D440C0C18E9BD /* PBXContainerItemProxy */ = {
164
- isa = PBXContainerItemProxy;
165
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
166
- proxyType = 1;
167
- remoteGlobalIDString = D3F6432D69E9E4C1D6D9CF583693B6F4;
168
- remoteInfo = OICommons;
169
- };
170
- F2FAFC3A632F5B9C462DD2198290381C /* PBXContainerItemProxy */ = {
171
- isa = PBXContainerItemProxy;
172
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
173
- proxyType = 1;
174
- remoteGlobalIDString = 13BBBA75F4A0689D55192A76F9E01166;
175
- remoteInfo = OILiveness3D;
176
- };
177
- /* End PBXContainerItemProxy section */
178
-
179
- /* Begin PBXFileReference section */
180
- 08EBE9141C2F87975AE31135E02DF04E /* Pods-RnLiveness3d.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RnLiveness3d.modulemap"; sourceTree = "<group>"; };
181
- 118475FC4F3289CC312286EC0C6A3959 /* OIComponents.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OIComponents.xcframework; path = Frameworks/OIComponents.xcframework; sourceTree = "<group>"; };
182
- 1AD56E81494C78A90BE551FF29EDC4D0 /* Pods-RnLiveness3d-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RnLiveness3d-acknowledgements.plist"; sourceTree = "<group>"; };
183
- 2CC2725AF18EF14C4A75235E7DB1C081 /* OILiveness3D.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OILiveness3D.xcframework; path = Framework/OILiveness3D.xcframework; sourceTree = "<group>"; };
184
- 2DC39A1730C9DDDB9D78AF2025B23986 /* OILiveness3D_FT.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OILiveness3D_FT.debug.xcconfig; sourceTree = "<group>"; };
185
- 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
186
- 39C784BAC897F9BDE7BBE25F8612677A /* OISecurity.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OISecurity.debug.xcconfig; sourceTree = "<group>"; };
187
- 3A821266AC8FD9703BD76DE75F32AF9A /* OISecurity.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OISecurity.xcframework; path = Frameworks/OISecurity.xcframework; sourceTree = "<group>"; };
188
- 3B131071AFC6EA4FF1A16B638F26B685 /* OILiveness3D-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OILiveness3D-xcframeworks.sh"; sourceTree = "<group>"; };
189
- 3F2CFB2AD4B68E2C7ECF3FB826823EA8 /* OISecurity-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OISecurity-xcframeworks.sh"; sourceTree = "<group>"; };
190
- 3FA8448B3F0C2596DB8DA8FF6E6E3767 /* OINetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OINetwork.release.xcconfig; sourceTree = "<group>"; };
191
- 3FDF8E35E120F8708A2261CC81F089F4 /* OICommons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OICommons.release.xcconfig; sourceTree = "<group>"; };
192
- 48C964D5AF1085F8E389A7D3F296D51F /* OIComponents.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OIComponents.debug.xcconfig; sourceTree = "<group>"; };
193
- 4BA6143198924A2EE78353899C1EB436 /* OIComponents-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OIComponents-xcframeworks.sh"; sourceTree = "<group>"; };
194
- 5ADFC406FEBB525500EE57886C84F75A /* Pods-RnLiveness3d.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RnLiveness3d.release.xcconfig"; sourceTree = "<group>"; };
195
- 5E6C07743C6AEBD76CA596C37AA24E81 /* FaceTecSDK.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = FaceTecSDK.xcframework; path = Framework/FaceTecSDK.xcframework; sourceTree = "<group>"; };
196
- 5F431FDE6761EB14D0AE4778BEB57DF7 /* OICommons.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OICommons.xcframework; path = Frameworks/OICommons.xcframework; sourceTree = "<group>"; };
197
- 6369868978601DFBB77D6C8BD3E5CE21 /* OILiveness3D_FT.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OILiveness3D_FT.release.xcconfig; sourceTree = "<group>"; };
198
- 659A1A5007AF7108CAF316BED91FDADD /* OILiveness3D_FT-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OILiveness3D_FT-xcframeworks.sh"; sourceTree = "<group>"; };
199
- 737E2BB248CDB6E7A5F60371F9EBF3E2 /* OINetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OINetwork.debug.xcconfig; sourceTree = "<group>"; };
200
- 821DBC6F0F9A6F73506F7B1B652A0934 /* OISecurity.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OISecurity.release.xcconfig; sourceTree = "<group>"; };
201
- 82E83A69A5DDBC2C8B8D52423C27203A /* Pods-RnLiveness3d */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-RnLiveness3d"; path = Pods_RnLiveness3d.framework; sourceTree = BUILT_PRODUCTS_DIR; };
202
- 83EAC7F1D226EBE6FDB0F73D3D56D80B /* OICommons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OICommons.debug.xcconfig; sourceTree = "<group>"; };
203
- 861048B3C8226AAB782D7390AFB1D3AC /* OINetwork.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = OINetwork.xcframework; path = Frameworks/OINetwork.xcframework; sourceTree = "<group>"; };
204
- 8962E8DA08008448FE5600850A443C42 /* OILiveness3D.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OILiveness3D.release.xcconfig; sourceTree = "<group>"; };
205
- 928CA89E7E28A55FFD42BFE2D2AD3EB3 /* OINetwork-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OINetwork-xcframeworks.sh"; sourceTree = "<group>"; };
206
- 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
207
- A3BEC5CA88075074DE010411312FC384 /* Pods-RnLiveness3d-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RnLiveness3d-dummy.m"; sourceTree = "<group>"; };
208
- AE67CDCB59BAD0A5D8E4824F591463F2 /* OICommons-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "OICommons-xcframeworks.sh"; sourceTree = "<group>"; };
209
- B2064973D683C2C20B74F90C6740E173 /* Pods-RnLiveness3d.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RnLiveness3d.debug.xcconfig"; sourceTree = "<group>"; };
210
- B52FA88F975960C6B47B24EB6715A00E /* Pods-RnLiveness3d-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RnLiveness3d-Info.plist"; sourceTree = "<group>"; };
211
- D4C16049A3088FBFF488318941D3A43A /* Pods-RnLiveness3d-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RnLiveness3d-umbrella.h"; sourceTree = "<group>"; };
212
- D684701C37B731890C49BE0EC0939AF3 /* OILiveness3D.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OILiveness3D.debug.xcconfig; sourceTree = "<group>"; };
213
- E8F949BF2997ADBCB7A0FDBE7ADD7AB6 /* Pods-RnLiveness3d-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RnLiveness3d-acknowledgements.markdown"; sourceTree = "<group>"; };
214
- F7743549C5F4C2056C2F046223DB83E9 /* OIComponents.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OIComponents.release.xcconfig; sourceTree = "<group>"; };
215
- /* End PBXFileReference section */
216
-
217
- /* Begin PBXFrameworksBuildPhase section */
218
- 3959AD0F71217709DB6DA000DB846A5C /* Frameworks */ = {
219
- isa = PBXFrameworksBuildPhase;
220
- buildActionMask = 2147483647;
221
- files = (
222
- 0A5AEF64C11AA91103E37A350CB86ABB /* Foundation.framework in Frameworks */,
223
- );
224
- runOnlyForDeploymentPostprocessing = 0;
225
- };
226
- /* End PBXFrameworksBuildPhase section */
227
-
228
- /* Begin PBXGroup section */
229
- 04358536E53E6248805CD6B0DA53027D /* Frameworks */ = {
230
- isa = PBXGroup;
231
- children = (
232
- 5E6C07743C6AEBD76CA596C37AA24E81 /* FaceTecSDK.xcframework */,
233
- );
234
- name = Frameworks;
235
- sourceTree = "<group>";
236
- };
237
- 0ACEC2F31242152DEB739641AD9B3066 /* Targets Support Files */ = {
238
- isa = PBXGroup;
239
- children = (
240
- 4722E26B445A3A55937256AD61AF8C6F /* Pods-RnLiveness3d */,
241
- );
242
- name = "Targets Support Files";
243
- sourceTree = "<group>";
244
- };
245
- 0CA664879C3AE9B7D553247E279D4C07 /* Frameworks */ = {
246
- isa = PBXGroup;
247
- children = (
248
- 5F431FDE6761EB14D0AE4778BEB57DF7 /* OICommons.xcframework */,
249
- );
250
- name = Frameworks;
251
- sourceTree = "<group>";
252
- };
253
- 1225F1117CED1CF823548085C5EEAF80 /* Support Files */ = {
254
- isa = PBXGroup;
255
- children = (
256
- 3B131071AFC6EA4FF1A16B638F26B685 /* OILiveness3D-xcframeworks.sh */,
257
- D684701C37B731890C49BE0EC0939AF3 /* OILiveness3D.debug.xcconfig */,
258
- 8962E8DA08008448FE5600850A443C42 /* OILiveness3D.release.xcconfig */,
259
- );
260
- name = "Support Files";
261
- path = "../Target Support Files/OILiveness3D";
262
- sourceTree = "<group>";
263
- };
264
- 18069FA63F5B794ABBB477B06AC198A0 /* Products */ = {
265
- isa = PBXGroup;
266
- children = (
267
- 82E83A69A5DDBC2C8B8D52423C27203A /* Pods-RnLiveness3d */,
268
- );
269
- name = Products;
270
- sourceTree = "<group>";
271
- };
272
- 33632C36F5A14287A437C64C20275590 /* OICommons */ = {
273
- isa = PBXGroup;
274
- children = (
275
- 0CA664879C3AE9B7D553247E279D4C07 /* Frameworks */,
276
- 875126C8A1410B745AF16A5427E9E44F /* Support Files */,
277
- );
278
- name = OICommons;
279
- path = OICommons;
280
- sourceTree = "<group>";
281
- };
282
- 384B1A94CDDF2790BAAABCB8F3D5636B /* Support Files */ = {
283
- isa = PBXGroup;
284
- children = (
285
- 659A1A5007AF7108CAF316BED91FDADD /* OILiveness3D_FT-xcframeworks.sh */,
286
- 2DC39A1730C9DDDB9D78AF2025B23986 /* OILiveness3D_FT.debug.xcconfig */,
287
- 6369868978601DFBB77D6C8BD3E5CE21 /* OILiveness3D_FT.release.xcconfig */,
288
- );
289
- name = "Support Files";
290
- path = "../Target Support Files/OILiveness3D_FT";
291
- sourceTree = "<group>";
292
- };
293
- 39DA257B89A006841FA5CABD8B1E8AE8 /* Frameworks */ = {
294
- isa = PBXGroup;
295
- children = (
296
- 3A821266AC8FD9703BD76DE75F32AF9A /* OISecurity.xcframework */,
297
- );
298
- name = Frameworks;
299
- sourceTree = "<group>";
300
- };
301
- 4722E26B445A3A55937256AD61AF8C6F /* Pods-RnLiveness3d */ = {
302
- isa = PBXGroup;
303
- children = (
304
- 08EBE9141C2F87975AE31135E02DF04E /* Pods-RnLiveness3d.modulemap */,
305
- E8F949BF2997ADBCB7A0FDBE7ADD7AB6 /* Pods-RnLiveness3d-acknowledgements.markdown */,
306
- 1AD56E81494C78A90BE551FF29EDC4D0 /* Pods-RnLiveness3d-acknowledgements.plist */,
307
- A3BEC5CA88075074DE010411312FC384 /* Pods-RnLiveness3d-dummy.m */,
308
- B52FA88F975960C6B47B24EB6715A00E /* Pods-RnLiveness3d-Info.plist */,
309
- D4C16049A3088FBFF488318941D3A43A /* Pods-RnLiveness3d-umbrella.h */,
310
- B2064973D683C2C20B74F90C6740E173 /* Pods-RnLiveness3d.debug.xcconfig */,
311
- 5ADFC406FEBB525500EE57886C84F75A /* Pods-RnLiveness3d.release.xcconfig */,
312
- );
313
- name = "Pods-RnLiveness3d";
314
- path = "Target Support Files/Pods-RnLiveness3d";
315
- sourceTree = "<group>";
316
- };
317
- 584D4853A02934AF6D01D88D409449BD /* OILiveness3D */ = {
318
- isa = PBXGroup;
319
- children = (
320
- 69B68FFD9C69358072E7139B6BEA8F02 /* Frameworks */,
321
- 1225F1117CED1CF823548085C5EEAF80 /* Support Files */,
322
- );
323
- name = OILiveness3D;
324
- path = OILiveness3D;
325
- sourceTree = "<group>";
326
- };
327
- 69B68FFD9C69358072E7139B6BEA8F02 /* Frameworks */ = {
328
- isa = PBXGroup;
329
- children = (
330
- 2CC2725AF18EF14C4A75235E7DB1C081 /* OILiveness3D.xcframework */,
331
- );
332
- name = Frameworks;
333
- sourceTree = "<group>";
334
- };
335
- 7DC88CAE0B63397241104B245260A814 /* OILiveness3D_FT */ = {
336
- isa = PBXGroup;
337
- children = (
338
- 04358536E53E6248805CD6B0DA53027D /* Frameworks */,
339
- 384B1A94CDDF2790BAAABCB8F3D5636B /* Support Files */,
340
- );
341
- name = OILiveness3D_FT;
342
- path = OILiveness3D_FT;
343
- sourceTree = "<group>";
344
- };
345
- 875126C8A1410B745AF16A5427E9E44F /* Support Files */ = {
346
- isa = PBXGroup;
347
- children = (
348
- AE67CDCB59BAD0A5D8E4824F591463F2 /* OICommons-xcframeworks.sh */,
349
- 83EAC7F1D226EBE6FDB0F73D3D56D80B /* OICommons.debug.xcconfig */,
350
- 3FDF8E35E120F8708A2261CC81F089F4 /* OICommons.release.xcconfig */,
351
- );
352
- name = "Support Files";
353
- path = "../Target Support Files/OICommons";
354
- sourceTree = "<group>";
355
- };
356
- 8C9C5ADD298D22519DEF61E72E0BD7E3 /* Support Files */ = {
357
- isa = PBXGroup;
358
- children = (
359
- 4BA6143198924A2EE78353899C1EB436 /* OIComponents-xcframeworks.sh */,
360
- 48C964D5AF1085F8E389A7D3F296D51F /* OIComponents.debug.xcconfig */,
361
- F7743549C5F4C2056C2F046223DB83E9 /* OIComponents.release.xcconfig */,
362
- );
363
- name = "Support Files";
364
- path = "../Target Support Files/OIComponents";
365
- sourceTree = "<group>";
366
- };
367
- 8E57388691063BA33A8D79E1E55DB126 /* Frameworks */ = {
368
- isa = PBXGroup;
369
- children = (
370
- 118475FC4F3289CC312286EC0C6A3959 /* OIComponents.xcframework */,
371
- );
372
- name = Frameworks;
373
- sourceTree = "<group>";
374
- };
375
- A9F465230389ED76275DB5ECB3ED3054 /* OISecurity */ = {
376
- isa = PBXGroup;
377
- children = (
378
- 39DA257B89A006841FA5CABD8B1E8AE8 /* Frameworks */,
379
- DFA9343656C34C82FE08404ACC262A78 /* Support Files */,
380
- );
381
- name = OISecurity;
382
- path = OISecurity;
383
- sourceTree = "<group>";
384
- };
385
- B25540C551F66C4E19565B55B70242BD /* OIComponents */ = {
386
- isa = PBXGroup;
387
- children = (
388
- 8E57388691063BA33A8D79E1E55DB126 /* Frameworks */,
389
- 8C9C5ADD298D22519DEF61E72E0BD7E3 /* Support Files */,
390
- );
391
- name = OIComponents;
392
- path = OIComponents;
393
- sourceTree = "<group>";
394
- };
395
- BD297F6B7E81524DF2EFF3BF95D01522 /* Frameworks */ = {
396
- isa = PBXGroup;
397
- children = (
398
- 861048B3C8226AAB782D7390AFB1D3AC /* OINetwork.xcframework */,
399
- );
400
- name = Frameworks;
401
- sourceTree = "<group>";
402
- };
403
- BFC5037D824F44139CA464457DDE32B3 /* Support Files */ = {
404
- isa = PBXGroup;
405
- children = (
406
- 928CA89E7E28A55FFD42BFE2D2AD3EB3 /* OINetwork-xcframeworks.sh */,
407
- 737E2BB248CDB6E7A5F60371F9EBF3E2 /* OINetwork.debug.xcconfig */,
408
- 3FA8448B3F0C2596DB8DA8FF6E6E3767 /* OINetwork.release.xcconfig */,
409
- );
410
- name = "Support Files";
411
- path = "../Target Support Files/OINetwork";
412
- sourceTree = "<group>";
413
- };
414
- CE7B53651F6ABFD96D022317AE112E2D /* OINetwork */ = {
415
- isa = PBXGroup;
416
- children = (
417
- BD297F6B7E81524DF2EFF3BF95D01522 /* Frameworks */,
418
- BFC5037D824F44139CA464457DDE32B3 /* Support Files */,
419
- );
420
- name = OINetwork;
421
- path = OINetwork;
422
- sourceTree = "<group>";
423
- };
424
- CF1408CF629C7361332E53B88F7BD30C = {
425
- isa = PBXGroup;
426
- children = (
427
- 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
428
- D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
429
- ECB072F36FF6FD4F4191ACFC63C91D88 /* Pods */,
430
- 18069FA63F5B794ABBB477B06AC198A0 /* Products */,
431
- 0ACEC2F31242152DEB739641AD9B3066 /* Targets Support Files */,
432
- );
433
- sourceTree = "<group>";
434
- };
435
- D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
436
- isa = PBXGroup;
437
- children = (
438
- E4801F62A6B08CD9B5410329F1A18FDE /* iOS */,
439
- );
440
- name = Frameworks;
441
- sourceTree = "<group>";
442
- };
443
- DFA9343656C34C82FE08404ACC262A78 /* Support Files */ = {
444
- isa = PBXGroup;
445
- children = (
446
- 3F2CFB2AD4B68E2C7ECF3FB826823EA8 /* OISecurity-xcframeworks.sh */,
447
- 39C784BAC897F9BDE7BBE25F8612677A /* OISecurity.debug.xcconfig */,
448
- 821DBC6F0F9A6F73506F7B1B652A0934 /* OISecurity.release.xcconfig */,
449
- );
450
- name = "Support Files";
451
- path = "../Target Support Files/OISecurity";
452
- sourceTree = "<group>";
453
- };
454
- E4801F62A6B08CD9B5410329F1A18FDE /* iOS */ = {
455
- isa = PBXGroup;
456
- children = (
457
- 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */,
458
- );
459
- name = iOS;
460
- sourceTree = "<group>";
461
- };
462
- ECB072F36FF6FD4F4191ACFC63C91D88 /* Pods */ = {
463
- isa = PBXGroup;
464
- children = (
465
- 33632C36F5A14287A437C64C20275590 /* OICommons */,
466
- B25540C551F66C4E19565B55B70242BD /* OIComponents */,
467
- 584D4853A02934AF6D01D88D409449BD /* OILiveness3D */,
468
- 7DC88CAE0B63397241104B245260A814 /* OILiveness3D_FT */,
469
- CE7B53651F6ABFD96D022317AE112E2D /* OINetwork */,
470
- A9F465230389ED76275DB5ECB3ED3054 /* OISecurity */,
471
- );
472
- name = Pods;
473
- sourceTree = "<group>";
474
- };
475
- /* End PBXGroup section */
476
-
477
- /* Begin PBXHeadersBuildPhase section */
478
- F336057E2000F06FE5A9D231B965127E /* Headers */ = {
479
- isa = PBXHeadersBuildPhase;
480
- buildActionMask = 2147483647;
481
- files = (
482
- 97098815FBD5BCBCC7AA19B448F29210 /* Pods-RnLiveness3d-umbrella.h in Headers */,
483
- );
484
- runOnlyForDeploymentPostprocessing = 0;
485
- };
486
- /* End PBXHeadersBuildPhase section */
487
-
488
- /* Begin PBXNativeTarget section */
489
- 1A8FFCB7F970D3565DB713A9ECE21622 /* Pods-RnLiveness3d */ = {
490
- isa = PBXNativeTarget;
491
- buildConfigurationList = 7B9479CB0B605F52A9326EFC302644CB /* Build configuration list for PBXNativeTarget "Pods-RnLiveness3d" */;
492
- buildPhases = (
493
- F336057E2000F06FE5A9D231B965127E /* Headers */,
494
- 8A8EE01EE649375D988D0F9843AA708B /* Sources */,
495
- 3959AD0F71217709DB6DA000DB846A5C /* Frameworks */,
496
- 1AFA7652F4AAA27E81158151F7CA118E /* Resources */,
497
- );
498
- buildRules = (
499
- );
500
- dependencies = (
501
- A094768923690180ECCBF71BD2A4F181 /* PBXTargetDependency */,
502
- FF37F9B4F57DC3F34B7530B8C56F9EAC /* PBXTargetDependency */,
503
- 9F1D92C62CB2EA31346025DB90D56F62 /* PBXTargetDependency */,
504
- 315CC6D1DE6C22D427D71FE42542DE4E /* PBXTargetDependency */,
505
- FC1AC398FE7AB42C62C3E76A2C5B97C7 /* PBXTargetDependency */,
506
- FFF39109127192E8D74AFB3CE9EF35F8 /* PBXTargetDependency */,
507
- );
508
- name = "Pods-RnLiveness3d";
509
- productName = Pods_RnLiveness3d;
510
- productReference = 82E83A69A5DDBC2C8B8D52423C27203A /* Pods-RnLiveness3d */;
511
- productType = "com.apple.product-type.framework";
512
- };
513
- /* End PBXNativeTarget section */
514
-
515
- /* Begin PBXProject section */
516
- BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
517
- isa = PBXProject;
518
- attributes = {
519
- LastSwiftUpdateCheck = 1600;
520
- LastUpgradeCheck = 1600;
521
- };
522
- buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
523
- compatibilityVersion = "Xcode 3.2";
524
- developmentRegion = en;
525
- hasScannedForEncodings = 0;
526
- knownRegions = (
527
- Base,
528
- en,
529
- );
530
- mainGroup = CF1408CF629C7361332E53B88F7BD30C;
531
- minimizedProjectReferenceProxies = 0;
532
- preferredProjectObjectVersion = 77;
533
- productRefGroup = 18069FA63F5B794ABBB477B06AC198A0 /* Products */;
534
- projectDirPath = "";
535
- projectRoot = "";
536
- targets = (
537
- D3F6432D69E9E4C1D6D9CF583693B6F4 /* OICommons */,
538
- C803281F06AD29D83614AB8CE6228DD8 /* OIComponents */,
539
- 13BBBA75F4A0689D55192A76F9E01166 /* OILiveness3D */,
540
- 1E2E843BEB5FDC71DDCCF52C06A9113F /* OILiveness3D_FT */,
541
- D2C4ECC520D5BF1EA895F6C928B5373C /* OINetwork */,
542
- 35BE567DDB9CCB9936E13E7CFB11E18C /* OISecurity */,
543
- 1A8FFCB7F970D3565DB713A9ECE21622 /* Pods-RnLiveness3d */,
544
- );
545
- };
546
- /* End PBXProject section */
547
-
548
- /* Begin PBXResourcesBuildPhase section */
549
- 1AFA7652F4AAA27E81158151F7CA118E /* Resources */ = {
550
- isa = PBXResourcesBuildPhase;
551
- buildActionMask = 2147483647;
552
- files = (
553
- );
554
- runOnlyForDeploymentPostprocessing = 0;
555
- };
556
- /* End PBXResourcesBuildPhase section */
557
-
558
- /* Begin PBXShellScriptBuildPhase section */
559
- 2B254A184310A5DEDB344513F1989EC0 /* [CP] Copy XCFrameworks */ = {
560
- isa = PBXShellScriptBuildPhase;
561
- buildActionMask = 2147483647;
562
- files = (
563
- );
564
- inputPaths = (
565
- "${PODS_ROOT}/Target Support Files/OINetwork/OINetwork-xcframeworks.sh",
566
- "${PODS_ROOT}/OINetwork/Frameworks/OINetwork.xcframework",
567
- );
568
- name = "[CP] Copy XCFrameworks";
569
- outputPaths = (
570
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/OINetwork/OINetwork.framework",
571
- );
572
- runOnlyForDeploymentPostprocessing = 0;
573
- shellPath = /bin/sh;
574
- shellScript = "\"${PODS_ROOT}/Target Support Files/OINetwork/OINetwork-xcframeworks.sh\"\n";
575
- showEnvVarsInLog = 0;
576
- };
577
- 7206869F0E2E64F708FD5DB1CA00754B /* [CP] Copy XCFrameworks */ = {
578
- isa = PBXShellScriptBuildPhase;
579
- buildActionMask = 2147483647;
580
- files = (
581
- );
582
- inputPaths = (
583
- "${PODS_ROOT}/Target Support Files/OILiveness3D_FT/OILiveness3D_FT-xcframeworks.sh",
584
- "${PODS_ROOT}/OILiveness3D_FT/Framework/FaceTecSDK.xcframework",
585
- );
586
- name = "[CP] Copy XCFrameworks";
587
- outputPaths = (
588
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/OILiveness3D_FT/FaceTecSDK.framework",
589
- );
590
- runOnlyForDeploymentPostprocessing = 0;
591
- shellPath = /bin/sh;
592
- shellScript = "\"${PODS_ROOT}/Target Support Files/OILiveness3D_FT/OILiveness3D_FT-xcframeworks.sh\"\n";
593
- showEnvVarsInLog = 0;
594
- };
595
- 9945FF39CEBBCCDB55188F600BA289E1 /* [CP] Copy XCFrameworks */ = {
596
- isa = PBXShellScriptBuildPhase;
597
- buildActionMask = 2147483647;
598
- files = (
599
- );
600
- inputPaths = (
601
- "${PODS_ROOT}/Target Support Files/OICommons/OICommons-xcframeworks.sh",
602
- "${PODS_ROOT}/OICommons/Frameworks/OICommons.xcframework",
603
- );
604
- name = "[CP] Copy XCFrameworks";
605
- outputPaths = (
606
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/OICommons/OICommons.framework",
607
- );
608
- runOnlyForDeploymentPostprocessing = 0;
609
- shellPath = /bin/sh;
610
- shellScript = "\"${PODS_ROOT}/Target Support Files/OICommons/OICommons-xcframeworks.sh\"\n";
611
- showEnvVarsInLog = 0;
612
- };
613
- 9B7A17864BC245897E0B6B1022FE84A8 /* [CP] Copy XCFrameworks */ = {
614
- isa = PBXShellScriptBuildPhase;
615
- buildActionMask = 2147483647;
616
- files = (
617
- );
618
- inputPaths = (
619
- "${PODS_ROOT}/Target Support Files/OISecurity/OISecurity-xcframeworks.sh",
620
- "${PODS_ROOT}/OISecurity/Frameworks/OISecurity.xcframework",
621
- );
622
- name = "[CP] Copy XCFrameworks";
623
- outputPaths = (
624
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/OISecurity/OISecurity.framework",
625
- );
626
- runOnlyForDeploymentPostprocessing = 0;
627
- shellPath = /bin/sh;
628
- shellScript = "\"${PODS_ROOT}/Target Support Files/OISecurity/OISecurity-xcframeworks.sh\"\n";
629
- showEnvVarsInLog = 0;
630
- };
631
- B0E1353FC8CCD959DF77B0731804E52D /* [CP] Copy XCFrameworks */ = {
632
- isa = PBXShellScriptBuildPhase;
633
- buildActionMask = 2147483647;
634
- files = (
635
- );
636
- inputPaths = (
637
- "${PODS_ROOT}/Target Support Files/OILiveness3D/OILiveness3D-xcframeworks.sh",
638
- "${PODS_ROOT}/OILiveness3D/Framework/OILiveness3D.xcframework",
639
- );
640
- name = "[CP] Copy XCFrameworks";
641
- outputPaths = (
642
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/OILiveness3D/OILiveness3D.framework",
643
- );
644
- runOnlyForDeploymentPostprocessing = 0;
645
- shellPath = /bin/sh;
646
- shellScript = "\"${PODS_ROOT}/Target Support Files/OILiveness3D/OILiveness3D-xcframeworks.sh\"\n";
647
- showEnvVarsInLog = 0;
648
- };
649
- FADD044AEA149F886C36C380519CF676 /* [CP] Copy XCFrameworks */ = {
650
- isa = PBXShellScriptBuildPhase;
651
- buildActionMask = 2147483647;
652
- files = (
653
- );
654
- inputPaths = (
655
- "${PODS_ROOT}/Target Support Files/OIComponents/OIComponents-xcframeworks.sh",
656
- "${PODS_ROOT}/OIComponents/Frameworks/OIComponents.xcframework",
657
- );
658
- name = "[CP] Copy XCFrameworks";
659
- outputPaths = (
660
- "${PODS_XCFRAMEWORKS_BUILD_DIR}/OIComponents/OIComponents.framework",
661
- );
662
- runOnlyForDeploymentPostprocessing = 0;
663
- shellPath = /bin/sh;
664
- shellScript = "\"${PODS_ROOT}/Target Support Files/OIComponents/OIComponents-xcframeworks.sh\"\n";
665
- showEnvVarsInLog = 0;
666
- };
667
- /* End PBXShellScriptBuildPhase section */
668
-
669
- /* Begin PBXSourcesBuildPhase section */
670
- 8A8EE01EE649375D988D0F9843AA708B /* Sources */ = {
671
- isa = PBXSourcesBuildPhase;
672
- buildActionMask = 2147483647;
673
- files = (
674
- A42879F900BB183EFB5251123EF98FAA /* Pods-RnLiveness3d-dummy.m in Sources */,
675
- );
676
- runOnlyForDeploymentPostprocessing = 0;
677
- };
678
- /* End PBXSourcesBuildPhase section */
679
-
680
- /* Begin PBXTargetDependency section */
681
- 315CC6D1DE6C22D427D71FE42542DE4E /* PBXTargetDependency */ = {
682
- isa = PBXTargetDependency;
683
- name = OILiveness3D_FT;
684
- target = 1E2E843BEB5FDC71DDCCF52C06A9113F /* OILiveness3D_FT */;
685
- targetProxy = 8F410DA5933B3F71F3D9B3109B6CCABA /* PBXContainerItemProxy */;
686
- };
687
- 4231759EF1809885B14E447BB3F526B2 /* PBXTargetDependency */ = {
688
- isa = PBXTargetDependency;
689
- name = OICommons;
690
- target = D3F6432D69E9E4C1D6D9CF583693B6F4 /* OICommons */;
691
- targetProxy = 8B2DAFF5763DBE123BCDFF8BF21D1179 /* PBXContainerItemProxy */;
692
- };
693
- 480231FE5B9838A8A0312FB270C28B33 /* PBXTargetDependency */ = {
694
- isa = PBXTargetDependency;
695
- name = OISecurity;
696
- target = 35BE567DDB9CCB9936E13E7CFB11E18C /* OISecurity */;
697
- targetProxy = B280F060070BD5AF3209473A3EB718FB /* PBXContainerItemProxy */;
698
- };
699
- 9F1D92C62CB2EA31346025DB90D56F62 /* PBXTargetDependency */ = {
700
- isa = PBXTargetDependency;
701
- name = OILiveness3D;
702
- target = 13BBBA75F4A0689D55192A76F9E01166 /* OILiveness3D */;
703
- targetProxy = F2FAFC3A632F5B9C462DD2198290381C /* PBXContainerItemProxy */;
704
- };
705
- A094768923690180ECCBF71BD2A4F181 /* PBXTargetDependency */ = {
706
- isa = PBXTargetDependency;
707
- name = OICommons;
708
- target = D3F6432D69E9E4C1D6D9CF583693B6F4 /* OICommons */;
709
- targetProxy = 2884EE21028BF0D83DEFE6F3FB5970A7 /* PBXContainerItemProxy */;
710
- };
711
- ACDF92C6DB066ADB5580ED56F30518D2 /* PBXTargetDependency */ = {
712
- isa = PBXTargetDependency;
713
- name = OINetwork;
714
- target = D2C4ECC520D5BF1EA895F6C928B5373C /* OINetwork */;
715
- targetProxy = 9F5174F8B7B31079F907AFDFCBC77455 /* PBXContainerItemProxy */;
716
- };
717
- BFD6E27DEA8D11CAF600404BF563F47E /* PBXTargetDependency */ = {
718
- isa = PBXTargetDependency;
719
- name = OINetwork;
720
- target = D2C4ECC520D5BF1EA895F6C928B5373C /* OINetwork */;
721
- targetProxy = 98764618277CCDF2F6FFDE9030C4F724 /* PBXContainerItemProxy */;
722
- };
723
- C03B4A13725EF5282A86FD27748DDA1F /* PBXTargetDependency */ = {
724
- isa = PBXTargetDependency;
725
- name = OIComponents;
726
- target = C803281F06AD29D83614AB8CE6228DD8 /* OIComponents */;
727
- targetProxy = 7FA765221FE51E5EFE50B24FF126A71B /* PBXContainerItemProxy */;
728
- };
729
- CC7FD9AED687F7FDBA0D464E5586D84A /* PBXTargetDependency */ = {
730
- isa = PBXTargetDependency;
731
- name = OILiveness3D_FT;
732
- target = 1E2E843BEB5FDC71DDCCF52C06A9113F /* OILiveness3D_FT */;
733
- targetProxy = 3486E61FA490A039CE0CDC7C8FB93C18 /* PBXContainerItemProxy */;
734
- };
735
- D6CAAD1D7847F78CACFA4BC1D8027B67 /* PBXTargetDependency */ = {
736
- isa = PBXTargetDependency;
737
- name = OICommons;
738
- target = D3F6432D69E9E4C1D6D9CF583693B6F4 /* OICommons */;
739
- targetProxy = CCC42602F08CD0B6CD6D440C0C18E9BD /* PBXContainerItemProxy */;
740
- };
741
- FC1AC398FE7AB42C62C3E76A2C5B97C7 /* PBXTargetDependency */ = {
742
- isa = PBXTargetDependency;
743
- name = OINetwork;
744
- target = D2C4ECC520D5BF1EA895F6C928B5373C /* OINetwork */;
745
- targetProxy = 100CB10599D3D5634992A38C7F111512 /* PBXContainerItemProxy */;
746
- };
747
- FF37F9B4F57DC3F34B7530B8C56F9EAC /* PBXTargetDependency */ = {
748
- isa = PBXTargetDependency;
749
- name = OIComponents;
750
- target = C803281F06AD29D83614AB8CE6228DD8 /* OIComponents */;
751
- targetProxy = 7B19C7E85E1B00CE41A9175938A8CE1B /* PBXContainerItemProxy */;
752
- };
753
- FFF39109127192E8D74AFB3CE9EF35F8 /* PBXTargetDependency */ = {
754
- isa = PBXTargetDependency;
755
- name = OISecurity;
756
- target = 35BE567DDB9CCB9936E13E7CFB11E18C /* OISecurity */;
757
- targetProxy = 316EF7AB613C7A29F981F2C04AEA0765 /* PBXContainerItemProxy */;
758
- };
759
- /* End PBXTargetDependency section */
760
-
761
- /* Begin XCBuildConfiguration section */
762
- 0928B1166D62EEE390776992B6059D24 /* Debug */ = {
763
- isa = XCBuildConfiguration;
764
- baseConfigurationReference = 2DC39A1730C9DDDB9D78AF2025B23986 /* OILiveness3D_FT.debug.xcconfig */;
765
- buildSettings = {
766
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
767
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
768
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
769
- CLANG_ENABLE_OBJC_WEAK = NO;
770
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
771
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
772
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
773
- SDKROOT = iphoneos;
774
- TARGETED_DEVICE_FAMILY = "1,2";
775
- };
776
- name = Debug;
777
- };
778
- 29DC4EE9EA58BF02B09A79A724EE04EF /* Debug */ = {
779
- isa = XCBuildConfiguration;
780
- baseConfigurationReference = 737E2BB248CDB6E7A5F60371F9EBF3E2 /* OINetwork.debug.xcconfig */;
781
- buildSettings = {
782
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
783
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
784
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
785
- CLANG_ENABLE_OBJC_WEAK = NO;
786
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
787
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
788
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
789
- SDKROOT = iphoneos;
790
- TARGETED_DEVICE_FAMILY = "1,2";
791
- };
792
- name = Debug;
793
- };
794
- 36EAEB616394198F5C954A64054F6FA9 /* Release */ = {
795
- isa = XCBuildConfiguration;
796
- baseConfigurationReference = 5ADFC406FEBB525500EE57886C84F75A /* Pods-RnLiveness3d.release.xcconfig */;
797
- buildSettings = {
798
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
799
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
800
- CLANG_ENABLE_OBJC_WEAK = NO;
801
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
802
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
803
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
804
- CURRENT_PROJECT_VERSION = 1;
805
- DEFINES_MODULE = YES;
806
- DYLIB_COMPATIBILITY_VERSION = 1;
807
- DYLIB_CURRENT_VERSION = 1;
808
- DYLIB_INSTALL_NAME_BASE = "@rpath";
809
- ENABLE_MODULE_VERIFIER = NO;
810
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
811
- INFOPLIST_FILE = "Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-Info.plist";
812
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
813
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
814
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
815
- MACH_O_TYPE = staticlib;
816
- MODULEMAP_FILE = "Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d.modulemap";
817
- OTHER_LDFLAGS = "";
818
- OTHER_LIBTOOLFLAGS = "";
819
- PODS_ROOT = "$(SRCROOT)";
820
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
821
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
822
- SDKROOT = iphoneos;
823
- SKIP_INSTALL = YES;
824
- TARGETED_DEVICE_FAMILY = "1,2";
825
- VALIDATE_PRODUCT = YES;
826
- VERSIONING_SYSTEM = "apple-generic";
827
- VERSION_INFO_PREFIX = "";
828
- };
829
- name = Release;
830
- };
831
- 422CD70F215EAA641881CB38921959B6 /* Release */ = {
832
- isa = XCBuildConfiguration;
833
- baseConfigurationReference = 821DBC6F0F9A6F73506F7B1B652A0934 /* OISecurity.release.xcconfig */;
834
- buildSettings = {
835
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
836
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
837
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
838
- CLANG_ENABLE_OBJC_WEAK = NO;
839
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
840
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
841
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
842
- SDKROOT = iphoneos;
843
- TARGETED_DEVICE_FAMILY = "1,2";
844
- VALIDATE_PRODUCT = YES;
845
- };
846
- name = Release;
847
- };
848
- 4675EE93972728D72D6FD90A6C7BB949 /* Release */ = {
849
- isa = XCBuildConfiguration;
850
- baseConfigurationReference = 6369868978601DFBB77D6C8BD3E5CE21 /* OILiveness3D_FT.release.xcconfig */;
851
- buildSettings = {
852
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
853
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
854
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
855
- CLANG_ENABLE_OBJC_WEAK = NO;
856
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
857
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
858
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
859
- SDKROOT = iphoneos;
860
- TARGETED_DEVICE_FAMILY = "1,2";
861
- VALIDATE_PRODUCT = YES;
862
- };
863
- name = Release;
864
- };
865
- 46F672A40C85D1BA3813A819A1C516E3 /* Release */ = {
866
- isa = XCBuildConfiguration;
867
- baseConfigurationReference = F7743549C5F4C2056C2F046223DB83E9 /* OIComponents.release.xcconfig */;
868
- buildSettings = {
869
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
870
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
871
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
872
- CLANG_ENABLE_OBJC_WEAK = NO;
873
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
874
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
875
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
876
- SDKROOT = iphoneos;
877
- TARGETED_DEVICE_FAMILY = "1,2";
878
- VALIDATE_PRODUCT = YES;
879
- };
880
- name = Release;
881
- };
882
- 68D809AC11FE3AAD8A7A85C996EB08B7 /* Debug */ = {
883
- isa = XCBuildConfiguration;
884
- baseConfigurationReference = B2064973D683C2C20B74F90C6740E173 /* Pods-RnLiveness3d.debug.xcconfig */;
885
- buildSettings = {
886
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
887
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
888
- CLANG_ENABLE_OBJC_WEAK = NO;
889
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
890
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
891
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
892
- CURRENT_PROJECT_VERSION = 1;
893
- DEFINES_MODULE = YES;
894
- DYLIB_COMPATIBILITY_VERSION = 1;
895
- DYLIB_CURRENT_VERSION = 1;
896
- DYLIB_INSTALL_NAME_BASE = "@rpath";
897
- ENABLE_MODULE_VERIFIER = NO;
898
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
899
- INFOPLIST_FILE = "Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d-Info.plist";
900
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
901
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
902
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
903
- MACH_O_TYPE = staticlib;
904
- MODULEMAP_FILE = "Target Support Files/Pods-RnLiveness3d/Pods-RnLiveness3d.modulemap";
905
- OTHER_LDFLAGS = "";
906
- OTHER_LIBTOOLFLAGS = "";
907
- PODS_ROOT = "$(SRCROOT)";
908
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
909
- PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
910
- SDKROOT = iphoneos;
911
- SKIP_INSTALL = YES;
912
- TARGETED_DEVICE_FAMILY = "1,2";
913
- VERSIONING_SYSTEM = "apple-generic";
914
- VERSION_INFO_PREFIX = "";
915
- };
916
- name = Debug;
917
- };
918
- 6C98B09FF5CCB107837D1A84E8F3A4F1 /* Release */ = {
919
- isa = XCBuildConfiguration;
920
- buildSettings = {
921
- ALWAYS_SEARCH_USER_PATHS = NO;
922
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
923
- CLANG_ANALYZER_NONNULL = YES;
924
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
925
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
926
- CLANG_CXX_LIBRARY = "libc++";
927
- CLANG_ENABLE_MODULES = YES;
928
- CLANG_ENABLE_OBJC_ARC = YES;
929
- CLANG_ENABLE_OBJC_WEAK = YES;
930
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
931
- CLANG_WARN_BOOL_CONVERSION = YES;
932
- CLANG_WARN_COMMA = YES;
933
- CLANG_WARN_CONSTANT_CONVERSION = YES;
934
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
935
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
936
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
937
- CLANG_WARN_EMPTY_BODY = YES;
938
- CLANG_WARN_ENUM_CONVERSION = YES;
939
- CLANG_WARN_INFINITE_RECURSION = YES;
940
- CLANG_WARN_INT_CONVERSION = YES;
941
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
942
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
943
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
944
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
945
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
946
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
947
- CLANG_WARN_STRICT_PROTOTYPES = YES;
948
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
949
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
950
- CLANG_WARN_UNREACHABLE_CODE = YES;
951
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
952
- COPY_PHASE_STRIP = NO;
953
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
954
- ENABLE_NS_ASSERTIONS = NO;
955
- ENABLE_STRICT_OBJC_MSGSEND = YES;
956
- GCC_C_LANGUAGE_STANDARD = gnu11;
957
- GCC_NO_COMMON_BLOCKS = YES;
958
- GCC_PREPROCESSOR_DEFINITIONS = (
959
- "POD_CONFIGURATION_RELEASE=1",
960
- "$(inherited)",
961
- );
962
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
963
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
964
- GCC_WARN_UNDECLARED_SELECTOR = YES;
965
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
966
- GCC_WARN_UNUSED_FUNCTION = YES;
967
- GCC_WARN_UNUSED_VARIABLE = YES;
968
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
969
- MTL_ENABLE_DEBUG_INFO = NO;
970
- MTL_FAST_MATH = YES;
971
- PRODUCT_NAME = "$(TARGET_NAME)";
972
- STRIP_INSTALLED_PRODUCT = NO;
973
- SWIFT_COMPILATION_MODE = wholemodule;
974
- SWIFT_OPTIMIZATION_LEVEL = "-O";
975
- SWIFT_VERSION = 5.0;
976
- SYMROOT = "${SRCROOT}/../build";
977
- };
978
- name = Release;
979
- };
980
- 78ADC97EC26E6C9D8E886C4AD3371EBD /* Release */ = {
981
- isa = XCBuildConfiguration;
982
- baseConfigurationReference = 3FDF8E35E120F8708A2261CC81F089F4 /* OICommons.release.xcconfig */;
983
- buildSettings = {
984
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
985
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
986
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
987
- CLANG_ENABLE_OBJC_WEAK = NO;
988
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
989
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
990
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
991
- SDKROOT = iphoneos;
992
- TARGETED_DEVICE_FAMILY = "1,2";
993
- VALIDATE_PRODUCT = YES;
994
- };
995
- name = Release;
996
- };
997
- 7E1C7BE2D81FC3787A454615AFDF9823 /* Debug */ = {
998
- isa = XCBuildConfiguration;
999
- baseConfigurationReference = 39C784BAC897F9BDE7BBE25F8612677A /* OISecurity.debug.xcconfig */;
1000
- buildSettings = {
1001
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1002
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1003
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
1004
- CLANG_ENABLE_OBJC_WEAK = NO;
1005
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
1006
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1007
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1008
- SDKROOT = iphoneos;
1009
- TARGETED_DEVICE_FAMILY = "1,2";
1010
- };
1011
- name = Debug;
1012
- };
1013
- 869FDFEB9336B5F8F5AEFDF69B6776E0 /* Release */ = {
1014
- isa = XCBuildConfiguration;
1015
- baseConfigurationReference = 8962E8DA08008448FE5600850A443C42 /* OILiveness3D.release.xcconfig */;
1016
- buildSettings = {
1017
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1018
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1019
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
1020
- CLANG_ENABLE_OBJC_WEAK = NO;
1021
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
1022
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1023
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1024
- SDKROOT = iphoneos;
1025
- TARGETED_DEVICE_FAMILY = "1,2";
1026
- VALIDATE_PRODUCT = YES;
1027
- };
1028
- name = Release;
1029
- };
1030
- 8E6A8FF58D100B7F9B1943F455C00F02 /* Debug */ = {
1031
- isa = XCBuildConfiguration;
1032
- buildSettings = {
1033
- ALWAYS_SEARCH_USER_PATHS = NO;
1034
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
1035
- CLANG_ANALYZER_NONNULL = YES;
1036
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
1037
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
1038
- CLANG_CXX_LIBRARY = "libc++";
1039
- CLANG_ENABLE_MODULES = YES;
1040
- CLANG_ENABLE_OBJC_ARC = YES;
1041
- CLANG_ENABLE_OBJC_WEAK = YES;
1042
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
1043
- CLANG_WARN_BOOL_CONVERSION = YES;
1044
- CLANG_WARN_COMMA = YES;
1045
- CLANG_WARN_CONSTANT_CONVERSION = YES;
1046
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
1047
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1048
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1049
- CLANG_WARN_EMPTY_BODY = YES;
1050
- CLANG_WARN_ENUM_CONVERSION = YES;
1051
- CLANG_WARN_INFINITE_RECURSION = YES;
1052
- CLANG_WARN_INT_CONVERSION = YES;
1053
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1054
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1055
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1056
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1057
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
1058
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1059
- CLANG_WARN_STRICT_PROTOTYPES = YES;
1060
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1061
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
1062
- CLANG_WARN_UNREACHABLE_CODE = YES;
1063
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1064
- COPY_PHASE_STRIP = NO;
1065
- DEBUG_INFORMATION_FORMAT = dwarf;
1066
- ENABLE_STRICT_OBJC_MSGSEND = YES;
1067
- ENABLE_TESTABILITY = YES;
1068
- GCC_C_LANGUAGE_STANDARD = gnu11;
1069
- GCC_DYNAMIC_NO_PIC = NO;
1070
- GCC_NO_COMMON_BLOCKS = YES;
1071
- GCC_OPTIMIZATION_LEVEL = 0;
1072
- GCC_PREPROCESSOR_DEFINITIONS = (
1073
- "POD_CONFIGURATION_DEBUG=1",
1074
- "DEBUG=1",
1075
- "$(inherited)",
1076
- );
1077
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1078
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1079
- GCC_WARN_UNDECLARED_SELECTOR = YES;
1080
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1081
- GCC_WARN_UNUSED_FUNCTION = YES;
1082
- GCC_WARN_UNUSED_VARIABLE = YES;
1083
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
1084
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
1085
- MTL_FAST_MATH = YES;
1086
- ONLY_ACTIVE_ARCH = YES;
1087
- PRODUCT_NAME = "$(TARGET_NAME)";
1088
- STRIP_INSTALLED_PRODUCT = NO;
1089
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
1090
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1091
- SWIFT_VERSION = 5.0;
1092
- SYMROOT = "${SRCROOT}/../build";
1093
- };
1094
- name = Debug;
1095
- };
1096
- A1AF0FC51C9EE22D6299E210CDC7625E /* Release */ = {
1097
- isa = XCBuildConfiguration;
1098
- baseConfigurationReference = 3FA8448B3F0C2596DB8DA8FF6E6E3767 /* OINetwork.release.xcconfig */;
1099
- buildSettings = {
1100
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1101
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1102
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
1103
- CLANG_ENABLE_OBJC_WEAK = NO;
1104
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
1105
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1106
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1107
- SDKROOT = iphoneos;
1108
- TARGETED_DEVICE_FAMILY = "1,2";
1109
- VALIDATE_PRODUCT = YES;
1110
- };
1111
- name = Release;
1112
- };
1113
- C3F918F7ED65F284005AF73D4CBBBA53 /* Debug */ = {
1114
- isa = XCBuildConfiguration;
1115
- baseConfigurationReference = 83EAC7F1D226EBE6FDB0F73D3D56D80B /* OICommons.debug.xcconfig */;
1116
- buildSettings = {
1117
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1118
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1119
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
1120
- CLANG_ENABLE_OBJC_WEAK = NO;
1121
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
1122
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1123
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1124
- SDKROOT = iphoneos;
1125
- TARGETED_DEVICE_FAMILY = "1,2";
1126
- };
1127
- name = Debug;
1128
- };
1129
- CF29BEB786CC3A4FF0EABBB7D2D20CE2 /* Debug */ = {
1130
- isa = XCBuildConfiguration;
1131
- baseConfigurationReference = D684701C37B731890C49BE0EC0939AF3 /* OILiveness3D.debug.xcconfig */;
1132
- buildSettings = {
1133
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1134
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1135
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
1136
- CLANG_ENABLE_OBJC_WEAK = NO;
1137
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
1138
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1139
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1140
- SDKROOT = iphoneos;
1141
- TARGETED_DEVICE_FAMILY = "1,2";
1142
- };
1143
- name = Debug;
1144
- };
1145
- EB097A749387C4C5C2B7313F67B6F79B /* Debug */ = {
1146
- isa = XCBuildConfiguration;
1147
- baseConfigurationReference = 48C964D5AF1085F8E389A7D3F296D51F /* OIComponents.debug.xcconfig */;
1148
- buildSettings = {
1149
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
1150
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1151
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
1152
- CLANG_ENABLE_OBJC_WEAK = NO;
1153
- ENABLE_USER_SCRIPT_SANDBOXING = NO;
1154
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
1155
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1156
- SDKROOT = iphoneos;
1157
- TARGETED_DEVICE_FAMILY = "1,2";
1158
- };
1159
- name = Debug;
1160
- };
1161
- /* End XCBuildConfiguration section */
1162
-
1163
- /* Begin XCConfigurationList section */
1164
- 016FF34A712E675401E19A5F437506F5 /* Build configuration list for PBXAggregateTarget "OIComponents" */ = {
1165
- isa = XCConfigurationList;
1166
- buildConfigurations = (
1167
- EB097A749387C4C5C2B7313F67B6F79B /* Debug */,
1168
- 46F672A40C85D1BA3813A819A1C516E3 /* Release */,
1169
- );
1170
- defaultConfigurationIsVisible = 0;
1171
- defaultConfigurationName = Release;
1172
- };
1173
- 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
1174
- isa = XCConfigurationList;
1175
- buildConfigurations = (
1176
- 8E6A8FF58D100B7F9B1943F455C00F02 /* Debug */,
1177
- 6C98B09FF5CCB107837D1A84E8F3A4F1 /* Release */,
1178
- );
1179
- defaultConfigurationIsVisible = 0;
1180
- defaultConfigurationName = Release;
1181
- };
1182
- 4C4AE07C80BAE951082800879627A0C9 /* Build configuration list for PBXAggregateTarget "OILiveness3D" */ = {
1183
- isa = XCConfigurationList;
1184
- buildConfigurations = (
1185
- CF29BEB786CC3A4FF0EABBB7D2D20CE2 /* Debug */,
1186
- 869FDFEB9336B5F8F5AEFDF69B6776E0 /* Release */,
1187
- );
1188
- defaultConfigurationIsVisible = 0;
1189
- defaultConfigurationName = Release;
1190
- };
1191
- 5AFADEB457608B1804417AF5CF1D9726 /* Build configuration list for PBXAggregateTarget "OISecurity" */ = {
1192
- isa = XCConfigurationList;
1193
- buildConfigurations = (
1194
- 7E1C7BE2D81FC3787A454615AFDF9823 /* Debug */,
1195
- 422CD70F215EAA641881CB38921959B6 /* Release */,
1196
- );
1197
- defaultConfigurationIsVisible = 0;
1198
- defaultConfigurationName = Release;
1199
- };
1200
- 7AE857F458FB26EBF3E74EB8305AC3C3 /* Build configuration list for PBXAggregateTarget "OILiveness3D_FT" */ = {
1201
- isa = XCConfigurationList;
1202
- buildConfigurations = (
1203
- 0928B1166D62EEE390776992B6059D24 /* Debug */,
1204
- 4675EE93972728D72D6FD90A6C7BB949 /* Release */,
1205
- );
1206
- defaultConfigurationIsVisible = 0;
1207
- defaultConfigurationName = Release;
1208
- };
1209
- 7B9479CB0B605F52A9326EFC302644CB /* Build configuration list for PBXNativeTarget "Pods-RnLiveness3d" */ = {
1210
- isa = XCConfigurationList;
1211
- buildConfigurations = (
1212
- 68D809AC11FE3AAD8A7A85C996EB08B7 /* Debug */,
1213
- 36EAEB616394198F5C954A64054F6FA9 /* Release */,
1214
- );
1215
- defaultConfigurationIsVisible = 0;
1216
- defaultConfigurationName = Release;
1217
- };
1218
- 9DEABDDECBAABBE1D09C130F82F6A004 /* Build configuration list for PBXAggregateTarget "OINetwork" */ = {
1219
- isa = XCConfigurationList;
1220
- buildConfigurations = (
1221
- 29DC4EE9EA58BF02B09A79A724EE04EF /* Debug */,
1222
- A1AF0FC51C9EE22D6299E210CDC7625E /* Release */,
1223
- );
1224
- defaultConfigurationIsVisible = 0;
1225
- defaultConfigurationName = Release;
1226
- };
1227
- AA9DA7DAB4641F57A75D2EF8F498AF5A /* Build configuration list for PBXAggregateTarget "OICommons" */ = {
1228
- isa = XCConfigurationList;
1229
- buildConfigurations = (
1230
- C3F918F7ED65F284005AF73D4CBBBA53 /* Debug */,
1231
- 78ADC97EC26E6C9D8E886C4AD3371EBD /* Release */,
1232
- );
1233
- defaultConfigurationIsVisible = 0;
1234
- defaultConfigurationName = Release;
1235
- };
1236
- /* End XCConfigurationList section */
1237
- };
1238
- rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
1239
- }