@regulaforensics/face-sdk 6.3.3-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/RNFaceSDK.podspec +21 -0
- package/android/CVDFaceSDK.kt +34 -0
- package/android/build.gradle +48 -0
- package/android/cordova.gradle +18 -0
- package/android/src/main/AndroidManifest.xml +1 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +165 -0
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +904 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +370 -0
- package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiModule.kt +54 -0
- package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiPackage.kt +11 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +287 -0
- package/examples/capacitor/.browserslistrc +6 -0
- package/examples/capacitor/.eslintrc.js +17 -0
- package/examples/capacitor/README.md +27 -0
- package/examples/capacitor/android/app/build.gradle +54 -0
- package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
- package/examples/capacitor/android/app/proguard-rules.pro +21 -0
- package/examples/capacitor/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java +26 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +43 -0
- package/examples/capacitor/android/app/src/main/java/com/regula/faceapi/MainActivity.java +5 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
- package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-hdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-mdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-land-xxxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-hdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-mdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-port-xxxhdpi/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +34 -0
- package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/values/ic_launcher_background.xml +4 -0
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
- package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
- package/examples/capacitor/android/app/src/main/res/xml/file_paths.xml +5 -0
- package/examples/capacitor/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java +18 -0
- package/examples/capacitor/android/build.gradle +30 -0
- package/examples/capacitor/android/capacitor.settings.gradle +15 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/examples/capacitor/android/gradle.properties +22 -0
- package/examples/capacitor/android/gradlew +244 -0
- package/examples/capacitor/android/gradlew.bat +92 -0
- package/examples/capacitor/android/settings.gradle +5 -0
- package/examples/capacitor/android/variables.gradle +16 -0
- package/examples/capacitor/capacitor.config.ts +12 -0
- package/examples/capacitor/cypress/e2e/test.cy.ts +6 -0
- package/examples/capacitor/cypress/fixtures/example.json +5 -0
- package/examples/capacitor/cypress/support/commands.ts +37 -0
- package/examples/capacitor/cypress/support/e2e.ts +20 -0
- package/examples/capacitor/cypress.config.ts +10 -0
- package/examples/capacitor/index.html +106 -0
- package/examples/capacitor/ionic.config.json +7 -0
- package/examples/capacitor/ios/App/App/App.entitlements +5 -0
- package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
- package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
- package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
- package/examples/capacitor/ios/App/App/Info.plist +53 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +410 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/capacitor/ios/App/Podfile +27 -0
- package/examples/capacitor/package.json +64 -0
- package/examples/capacitor/public/assets/.gitkeep +0 -0
- package/examples/capacitor/public/assets/img/id.png +0 -0
- package/examples/capacitor/public/assets/img/portrait.png +0 -0
- package/examples/capacitor/public/favicon.png +0 -0
- package/examples/capacitor/public/manifest.json +21 -0
- package/examples/capacitor/src/App.test.tsx +8 -0
- package/examples/capacitor/src/App.tsx +42 -0
- package/examples/capacitor/src/components/ExploreContainer.css +24 -0
- package/examples/capacitor/src/components/ExploreContainer.tsx +14 -0
- package/examples/capacitor/src/main.tsx +11 -0
- package/examples/capacitor/src/pages/Home.tsx +159 -0
- package/examples/capacitor/src/setupTests.ts +14 -0
- package/examples/capacitor/src/theme/variables.css +242 -0
- package/examples/capacitor/src/vite-env.d.ts +1 -0
- package/examples/capacitor/tsconfig.json +21 -0
- package/examples/capacitor/tsconfig.node.json +9 -0
- package/examples/capacitor/vite.config.ts +16 -0
- package/examples/cordova/.vscode/launch.json +28 -0
- package/examples/cordova/config.xml +37 -0
- package/examples/cordova/jsconfig.json +1 -0
- package/examples/cordova/package.json +40 -0
- package/examples/cordova/www/css/index.css +107 -0
- package/examples/cordova/www/img/id.png +0 -0
- package/examples/cordova/www/img/logo.png +0 -0
- package/examples/cordova/www/img/portrait.png +0 -0
- package/examples/cordova/www/index.html +94 -0
- package/examples/cordova/www/js/index.js +154 -0
- package/examples/ionic/angular.json +187 -0
- package/examples/ionic/browserslist +12 -0
- package/examples/ionic/config.xml +114 -0
- package/examples/ionic/e2e/protractor.conf.js +28 -0
- package/examples/ionic/e2e/src/app.e2e-spec.ts +14 -0
- package/examples/ionic/e2e/src/app.po.ts +11 -0
- package/examples/ionic/e2e/tsconfig.json +13 -0
- package/examples/ionic/ionic.config.json +7 -0
- package/examples/ionic/karma.conf.js +31 -0
- package/examples/ionic/package.json +97 -0
- package/examples/ionic/resources/README.md +8 -0
- package/examples/ionic/resources/android/icon/drawable-hdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-ldpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-mdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/examples/ionic/resources/android/xml/network_security_config.xml +6 -0
- package/examples/ionic/resources/icon.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-1024.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-20@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-24@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-27.5@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-29@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-40@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-44@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-50.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-50@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-60@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-72.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-72@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-76.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-76@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-83.5@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-86@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-98@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small@2x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon-small@3x.png +0 -0
- package/examples/ionic/resources/ios/icon/icon.png +0 -0
- package/examples/ionic/resources/ios/icon/icon@2x.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-2436h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-667h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-736h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape-2436h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape-736h.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Landscape~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
- package/examples/ionic/resources/ios/splash/Default-Portrait~ipad.png +0 -0
- package/examples/ionic/resources/ios/splash/Default@2x~iphone.png +0 -0
- package/examples/ionic/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
- package/examples/ionic/resources/ios/splash/Default~iphone.png +0 -0
- package/examples/ionic/resources/splash.png +0 -0
- package/examples/ionic/src/app/app-routing.module.ts +15 -0
- package/examples/ionic/src/app/app.component.html +3 -0
- package/examples/ionic/src/app/app.component.scss +0 -0
- package/examples/ionic/src/app/app.component.spec.ts +47 -0
- package/examples/ionic/src/app/app.component.ts +27 -0
- package/examples/ionic/src/app/app.module.ts +23 -0
- package/examples/ionic/src/app/home/home.module.ts +29 -0
- package/examples/ionic/src/app/home/home.page.html +75 -0
- package/examples/ionic/src/app/home/home.page.scss +1 -0
- package/examples/ionic/src/app/home/home.page.spec.ts +24 -0
- package/examples/ionic/src/app/home/home.page.ts +166 -0
- package/examples/ionic/src/assets/icon/favicon.png +0 -0
- package/examples/ionic/src/assets/img/portrait.png +0 -0
- package/examples/ionic/src/assets/shapes.svg +1 -0
- package/examples/ionic/src/environments/environment.prod.ts +3 -0
- package/examples/ionic/src/environments/environment.ts +16 -0
- package/examples/ionic/src/global.scss +31 -0
- package/examples/ionic/src/index.html +25 -0
- package/examples/ionic/src/main.ts +12 -0
- package/examples/ionic/src/polyfills.ts +66 -0
- package/examples/ionic/src/test.ts +20 -0
- package/examples/ionic/src/theme/variables.scss +77 -0
- package/examples/ionic/src/zone-flags.ts +5 -0
- package/examples/ionic/tsconfig.app.json +14 -0
- package/examples/ionic/tsconfig.json +26 -0
- package/examples/ionic/tsconfig.spec.json +19 -0
- package/examples/ionic/tslint.json +88 -0
- package/examples/react-native/.vscode/launch.json +26 -0
- package/examples/react-native/.watchmanconfig +1 -0
- package/examples/react-native/App.tsx +206 -0
- package/examples/react-native/Gemfile +8 -0
- package/examples/react-native/Gemfile.lock +134 -0
- package/examples/react-native/android/app/build.gradle +123 -0
- package/examples/react-native/android/app/debug.keystore +0 -0
- package/examples/react-native/android/app/proguard-rules.pro +10 -0
- package/examples/react-native/android/app/src/debug/AndroidManifest.xml +9 -0
- package/examples/react-native/android/app/src/main/AndroidManifest.xml +27 -0
- package/examples/react-native/android/app/src/main/assets/.gitkeep +0 -0
- package/examples/react-native/android/app/src/main/java/com/regula/face/api/MainActivity.kt +22 -0
- package/examples/react-native/android/app/src/main/java/com/regula/face/api/MainApplication.kt +43 -0
- package/examples/react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/examples/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/examples/react-native/android/app/src/main/res/values/strings.xml +3 -0
- package/examples/react-native/android/app/src/main/res/values/styles.xml +9 -0
- package/examples/react-native/android/build.gradle +21 -0
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/react-native/android/gradle.properties +39 -0
- package/examples/react-native/android/gradlew +249 -0
- package/examples/react-native/android/gradlew.bat +92 -0
- package/examples/react-native/android/settings.gradle +6 -0
- package/examples/react-native/images/portrait.png +0 -0
- package/examples/react-native/index.js +4 -0
- package/examples/react-native/ios/.xcode.env +11 -0
- package/examples/react-native/ios/FaceSDK/AppDelegate.h +6 -0
- package/examples/react-native/ios/FaceSDK/AppDelegate.mm +31 -0
- package/examples/react-native/ios/FaceSDK/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/examples/react-native/ios/FaceSDK/Images.xcassets/Contents.json +6 -0
- package/examples/react-native/ios/FaceSDK/Info.plist +51 -0
- package/examples/react-native/ios/FaceSDK/LaunchScreen.storyboard +47 -0
- package/examples/react-native/ios/FaceSDK/PrivacyInfo.xcprivacy +38 -0
- package/examples/react-native/ios/FaceSDK/main.m +10 -0
- package/examples/react-native/ios/FaceSDK.xcodeproj/project.pbxproj +719 -0
- package/examples/react-native/ios/FaceSDK.xcodeproj/xcshareddata/xcschemes/FaceSDK.xcscheme +88 -0
- package/examples/react-native/ios/FaceSDK.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/react-native/ios/FaceSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/react-native/ios/FaceSDKTests/FaceSDKTests.m +66 -0
- package/examples/react-native/ios/FaceSDKTests/Info.plist +24 -0
- package/examples/react-native/ios/Podfile +40 -0
- package/examples/react-native/ios/Podfile.lock +1822 -0
- package/examples/react-native/ios/license/.gitkeep +0 -0
- package/examples/react-native/metro.config.js +15 -0
- package/examples/react-native/package-lock.json +13098 -0
- package/examples/react-native/package.json +42 -0
- package/ios/CVDFaceSDK.h +7 -0
- package/ios/CVDFaceSDK.m +34 -0
- package/ios/RFSWConfig.h +27 -0
- package/ios/RFSWConfig.m +189 -0
- package/ios/RFSWJSONConstructor.h +134 -0
- package/ios/RFSWJSONConstructor.m +977 -0
- package/ios/RFSWMain.h +23 -0
- package/ios/RFSWMain.m +352 -0
- package/ios/RNFaceSDK.h +8 -0
- package/ios/RNFaceSDK.m +42 -0
- package/ios-ci/.gitlab-ci.yml +41 -0
- package/ios-ci/.sample-env +22 -0
- package/ios-ci/README.md +97 -0
- package/ios-ci/RegulaDanger/Package.swift +34 -0
- package/ios-ci/RegulaDanger/Sources/RegulaDanger/RegulaDanger.swift +44 -0
- package/ios-ci/RegulaDanger/Tests/LinuxMain.swift +7 -0
- package/ios-ci/RegulaDanger/Tests/RegulaDangerTests/RegulaDangerTests.swift +15 -0
- package/ios-ci/RegulaDanger/Tests/RegulaDangerTests/XCTestManifests.swift +9 -0
- package/ios-ci/install.sh +9 -0
- package/ios-ci/ios_ci/__init__.py +8 -0
- package/ios-ci/ios_ci/cli.py +408 -0
- package/ios-ci/ios_ci/common/__init__.py +0 -0
- package/ios-ci/ios_ci/common/build_index.py +70 -0
- package/ios-ci/ios_ci/common/clean_cocoapod.sh +13 -0
- package/ios-ci/ios_ci/common/dependency.py +466 -0
- package/ios-ci/ios_ci/common/ftp.py +314 -0
- package/ios-ci/ios_ci/common/searchpod.sh +6 -0
- package/ios-ci/ios_ci/common/wait_for_cocopod.sh +21 -0
- package/ios-ci/ios_ci/inject.py +145 -0
- package/ios-ci/ios_ci/podspec/__init__.py +0 -0
- package/ios-ci/ios_ci/podspec/podspec.py +88 -0
- package/ios-ci/ios_ci/podspec/templates/BTDevice.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/Core.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/DocumentReader.podspec +19 -0
- package/ios-ci/ios_ci/podspec/templates/FaceCore.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/FaceSDK.podspec +18 -0
- package/ios-ci/ios_ci/podspec/templates/IRS.podspec +17 -0
- package/ios-ci/ios_ci/podspec/templates/RegulaCommon.podspec +17 -0
- package/ios-ci/ios_ci/resolve_podfile_common.py +76 -0
- package/ios-ci/ios_ci/spm/AppleRootCA-G3.cer +0 -0
- package/ios-ci/ios_ci/spm/AppleWWDRCAG3.cer +0 -0
- package/ios-ci/ios_ci/spm/SwiftPackageGenerator+Common.sh +48 -0
- package/ios-ci/ios_ci/spm/SwiftPackageGenerator.sh +33 -0
- package/ios-ci/ios_ci/spm/XcodeSPMCollection.json +29 -0
- package/ios-ci/ios_ci/spm/__init__.py +0 -0
- package/ios-ci/ios_ci/spm/askpass.py +19 -0
- package/ios-ci/ios_ci/spm/spm.py +227 -0
- package/ios-ci/ios_ci/upload_build.py +158 -0
- package/ios-ci/ios_ci/version.py +14 -0
- package/ios-ci/poetry.lock +342 -0
- package/ios-ci/pyproject.toml +26 -0
- package/ios-ci/scripts.py +9 -0
- package/ios-ci/tests/__init__.py +0 -0
- package/ios-ci/tests/podspec/fixtures/BTDevice.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/BTDeviceBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderBeta_RegulaCommon_Beta.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderBeta_RegulaCommon_Release.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderFullRFID.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReaderFullRFIDBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReader_RegulaCommon_Beta.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/DocumentReader_RegulaCommon_Release.podspec +19 -0
- package/ios-ci/tests/podspec/fixtures/FaceSDK.podspec +18 -0
- package/ios-ci/tests/podspec/fixtures/FaceSDKBeta.podspec +18 -0
- package/ios-ci/tests/podspec/fixtures/IRS.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/IRSBeta.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/RegulaCommon.podspec +17 -0
- package/ios-ci/tests/podspec/fixtures/RegulaCommonBeta.podspec +17 -0
- package/ios-ci/tests/podspec/test_podspec.py +188 -0
- package/ios-ci/tests/test_build_index.py +117 -0
- package/ios-ci/tests/test_dependency.py +139 -0
- package/ios-ci/tests/test_ios_ci.py +5 -0
- package/package.json +36 -0
- package/plugin.xml +48 -0
- package/www/capacitor/customization/camera_position.js +4 -0
- package/www/capacitor/customization/customization.js +66 -0
- package/www/capacitor/customization/customization_colors.js +233 -0
- package/www/capacitor/customization/customization_fonts.js +106 -0
- package/www/capacitor/customization/customization_images.js +129 -0
- package/www/capacitor/customization/font.js +23 -0
- package/www/capacitor/customization/screen_orientation.js +4 -0
- package/www/capacitor/detect_faces/detect_face_result.js +38 -0
- package/www/capacitor/detect_faces/detect_faces_attribute.js +15 -0
- package/www/capacitor/detect_faces/detect_faces_attribute_result.js +20 -0
- package/www/capacitor/detect_faces/detect_faces_backend_exception.js +23 -0
- package/www/capacitor/detect_faces/detect_faces_config.js +14 -0
- package/www/capacitor/detect_faces/detect_faces_exception.js +30 -0
- package/www/capacitor/detect_faces/detect_faces_request.js +67 -0
- package/www/capacitor/detect_faces/detect_faces_response.js +24 -0
- package/www/capacitor/detect_faces/detect_faces_scenario.js +10 -0
- package/www/capacitor/face_capture/face_capture_config.js +28 -0
- package/www/capacitor/face_capture/face_capture_exception.js +25 -0
- package/www/capacitor/face_capture/face_capture_image.js +26 -0
- package/www/capacitor/face_capture/face_capture_response.js +17 -0
- package/www/capacitor/image_params/output_image_crop.js +21 -0
- package/www/capacitor/image_params/output_image_params.js +9 -0
- package/www/capacitor/image_params/point.js +14 -0
- package/www/capacitor/image_params/rect.js +18 -0
- package/www/capacitor/image_params/size.js +9 -0
- package/www/capacitor/image_quality/image_quality_characteristic.js +24 -0
- package/www/capacitor/image_quality/image_quality_characteristic_name.js +58 -0
- package/www/capacitor/image_quality/image_quality_group.js +332 -0
- package/www/capacitor/image_quality/image_quality_range.js +26 -0
- package/www/capacitor/image_quality/image_quality_result.js +40 -0
- package/www/capacitor/index.js +219 -0
- package/www/capacitor/init/face_sdk_version.js +16 -0
- package/www/capacitor/init/init_config.js +9 -0
- package/www/capacitor/init/init_exception.js +29 -0
- package/www/capacitor/init/license_exception.js +29 -0
- package/www/capacitor/internal/bridge.js +39 -0
- package/www/capacitor/internal/cordova.js +17 -0
- package/www/capacitor/internal/webpack.config.js +11 -0
- package/www/capacitor/liveness/liveness_backend_exception.js +38 -0
- package/www/capacitor/liveness/liveness_config.js +54 -0
- package/www/capacitor/liveness/liveness_exception.js +35 -0
- package/www/capacitor/liveness/liveness_notification.js +34 -0
- package/www/capacitor/liveness/liveness_response.js +30 -0
- package/www/capacitor/match_faces/compared_face.js +21 -0
- package/www/capacitor/match_faces/compared_faces_pair.js +23 -0
- package/www/capacitor/match_faces/compared_faces_split.js +22 -0
- package/www/capacitor/match_faces/match_faces_backend_exception.js +14 -0
- package/www/capacitor/match_faces/match_faces_config.js +12 -0
- package/www/capacitor/match_faces/match_faces_detection.js +25 -0
- package/www/capacitor/match_faces/match_faces_detection_face.js +28 -0
- package/www/capacitor/match_faces/match_faces_exception.js +30 -0
- package/www/capacitor/match_faces/match_faces_image.js +25 -0
- package/www/capacitor/match_faces/match_faces_request.js +13 -0
- package/www/capacitor/match_faces/match_faces_response.js +28 -0
- package/www/capacitor/person_database/edit_group_persons_request.js +9 -0
- package/www/capacitor/person_database/image_upload.js +16 -0
- package/www/capacitor/person_database/pageable_item_list.js +22 -0
- package/www/capacitor/person_database/person.js +22 -0
- package/www/capacitor/person_database/person_database.js +145 -0
- package/www/capacitor/person_database/person_group.js +18 -0
- package/www/capacitor/person_database/person_image.js +22 -0
- package/www/capacitor/person_database/search_person.js +31 -0
- package/www/capacitor/person_database/search_person_detection.js +22 -0
- package/www/capacitor/person_database/search_person_image.js +26 -0
- package/www/capacitor/person_database/search_person_request.js +17 -0
- package/www/cordova.js +3738 -0
- package/www/react-native/customization/camera_position.js +4 -0
- package/www/react-native/customization/customization.js +66 -0
- package/www/react-native/customization/customization_colors.js +233 -0
- package/www/react-native/customization/customization_fonts.js +106 -0
- package/www/react-native/customization/customization_images.js +129 -0
- package/www/react-native/customization/font.js +23 -0
- package/www/react-native/customization/screen_orientation.js +4 -0
- package/www/react-native/detect_faces/detect_face_result.js +38 -0
- package/www/react-native/detect_faces/detect_faces_attribute.js +15 -0
- package/www/react-native/detect_faces/detect_faces_attribute_result.js +20 -0
- package/www/react-native/detect_faces/detect_faces_backend_exception.js +23 -0
- package/www/react-native/detect_faces/detect_faces_config.js +14 -0
- package/www/react-native/detect_faces/detect_faces_exception.js +30 -0
- package/www/react-native/detect_faces/detect_faces_request.js +67 -0
- package/www/react-native/detect_faces/detect_faces_response.js +24 -0
- package/www/react-native/detect_faces/detect_faces_scenario.js +10 -0
- package/www/react-native/face_capture/face_capture_config.js +28 -0
- package/www/react-native/face_capture/face_capture_exception.js +25 -0
- package/www/react-native/face_capture/face_capture_image.js +26 -0
- package/www/react-native/face_capture/face_capture_response.js +17 -0
- package/www/react-native/image_params/output_image_crop.js +21 -0
- package/www/react-native/image_params/output_image_params.js +9 -0
- package/www/react-native/image_params/point.js +14 -0
- package/www/react-native/image_params/rect.js +18 -0
- package/www/react-native/image_params/size.js +9 -0
- package/www/react-native/image_quality/image_quality_characteristic.js +24 -0
- package/www/react-native/image_quality/image_quality_characteristic_name.js +58 -0
- package/www/react-native/image_quality/image_quality_group.js +332 -0
- package/www/react-native/image_quality/image_quality_range.js +26 -0
- package/www/react-native/image_quality/image_quality_result.js +40 -0
- package/www/react-native/index.js +219 -0
- package/www/react-native/init/face_sdk_version.js +16 -0
- package/www/react-native/init/init_config.js +9 -0
- package/www/react-native/init/init_exception.js +29 -0
- package/www/react-native/init/license_exception.js +29 -0
- package/www/react-native/internal/bridge.js +39 -0
- package/www/react-native/liveness/liveness_backend_exception.js +38 -0
- package/www/react-native/liveness/liveness_config.js +54 -0
- package/www/react-native/liveness/liveness_exception.js +35 -0
- package/www/react-native/liveness/liveness_notification.js +34 -0
- package/www/react-native/liveness/liveness_response.js +30 -0
- package/www/react-native/match_faces/compared_face.js +21 -0
- package/www/react-native/match_faces/compared_faces_pair.js +23 -0
- package/www/react-native/match_faces/compared_faces_split.js +22 -0
- package/www/react-native/match_faces/match_faces_backend_exception.js +14 -0
- package/www/react-native/match_faces/match_faces_config.js +12 -0
- package/www/react-native/match_faces/match_faces_detection.js +25 -0
- package/www/react-native/match_faces/match_faces_detection_face.js +28 -0
- package/www/react-native/match_faces/match_faces_exception.js +30 -0
- package/www/react-native/match_faces/match_faces_image.js +25 -0
- package/www/react-native/match_faces/match_faces_request.js +13 -0
- package/www/react-native/match_faces/match_faces_response.js +28 -0
- package/www/react-native/person_database/edit_group_persons_request.js +9 -0
- package/www/react-native/person_database/image_upload.js +16 -0
- package/www/react-native/person_database/pageable_item_list.js +22 -0
- package/www/react-native/person_database/person.js +22 -0
- package/www/react-native/person_database/person_database.js +145 -0
- package/www/react-native/person_database/person_group.js +18 -0
- package/www/react-native/person_database/person_image.js +22 -0
- package/www/react-native/person_database/search_person.js +31 -0
- package/www/react-native/person_database/search_person_detection.js +22 -0
- package/www/react-native/person_database/search_person_image.js +26 -0
- package/www/react-native/person_database/search_person_request.js +17 -0
- package/www/types/customization/camera_position.d.ts +4 -0
- package/www/types/customization/customization.d.ts +24 -0
- package/www/types/customization/customization_colors.d.ts +31 -0
- package/www/types/customization/customization_fonts.d.ts +17 -0
- package/www/types/customization/customization_images.d.ts +18 -0
- package/www/types/customization/font.d.ts +14 -0
- package/www/types/customization/screen_orientation.d.ts +4 -0
- package/www/types/detect_faces/detect_face_result.d.ts +16 -0
- package/www/types/detect_faces/detect_faces_attribute.d.ts +15 -0
- package/www/types/detect_faces/detect_faces_attribute_result.d.ts +11 -0
- package/www/types/detect_faces/detect_faces_backend_exception.d.ts +15 -0
- package/www/types/detect_faces/detect_faces_config.d.ts +19 -0
- package/www/types/detect_faces/detect_faces_exception.d.ts +21 -0
- package/www/types/detect_faces/detect_faces_request.d.ts +27 -0
- package/www/types/detect_faces/detect_faces_response.d.ts +12 -0
- package/www/types/detect_faces/detect_faces_scenario.d.ts +10 -0
- package/www/types/face_capture/face_capture_config.d.ts +30 -0
- package/www/types/face_capture/face_capture_exception.d.ts +17 -0
- package/www/types/face_capture/face_capture_image.d.ts +15 -0
- package/www/types/face_capture/face_capture_response.d.ts +9 -0
- package/www/types/image_params/output_image_crop.d.ts +25 -0
- package/www/types/image_params/output_image_params.d.ts +13 -0
- package/www/types/image_params/point.d.ts +6 -0
- package/www/types/image_params/rect.d.ts +8 -0
- package/www/types/image_params/size.d.ts +6 -0
- package/www/types/image_quality/image_quality_characteristic.d.ts +4 -0
- package/www/types/image_quality/image_quality_characteristic_name.d.ts +58 -0
- package/www/types/image_quality/image_quality_group.d.ts +155 -0
- package/www/types/image_quality/image_quality_range.d.ts +8 -0
- package/www/types/image_quality/image_quality_result.d.ts +30 -0
- package/www/types/index.d.ts +159 -0
- package/www/types/init/face_sdk_version.d.ts +7 -0
- package/www/types/init/init_config.d.ts +7 -0
- package/www/types/init/init_exception.d.ts +20 -0
- package/www/types/init/license_exception.d.ts +21 -0
- package/www/types/liveness/liveness_backend_exception.d.ts +30 -0
- package/www/types/liveness/liveness_config.d.ts +56 -0
- package/www/types/liveness/liveness_exception.d.ts +26 -0
- package/www/types/liveness/liveness_notification.d.ts +28 -0
- package/www/types/liveness/liveness_response.d.ts +18 -0
- package/www/types/match_faces/compared_face.d.ts +11 -0
- package/www/types/match_faces/compared_faces_pair.d.ts +12 -0
- package/www/types/match_faces/compared_faces_split.d.ts +8 -0
- package/www/types/match_faces/match_faces_backend_exception.d.ts +6 -0
- package/www/types/match_faces/match_faces_config.d.ts +14 -0
- package/www/types/match_faces/match_faces_detection.d.ts +12 -0
- package/www/types/match_faces/match_faces_detection_face.d.ts +13 -0
- package/www/types/match_faces/match_faces_exception.d.ts +21 -0
- package/www/types/match_faces/match_faces_image.d.ts +16 -0
- package/www/types/match_faces/match_faces_request.d.ts +18 -0
- package/www/types/match_faces/match_faces_response.d.ts +12 -0
- package/www/types/person_database/edit_group_persons_request.d.ts +8 -0
- package/www/types/person_database/image_upload.d.ts +6 -0
- package/www/types/person_database/pageable_item_list.d.ts +7 -0
- package/www/types/person_database/person.d.ts +10 -0
- package/www/types/person_database/person_database.d.ts +92 -0
- package/www/types/person_database/person_group.d.ts +8 -0
- package/www/types/person_database/person_image.d.ts +10 -0
- package/www/types/person_database/search_person.d.ts +15 -0
- package/www/types/person_database/search_person_detection.d.ts +11 -0
- package/www/types/person_database/search_person_image.d.ts +12 -0
- package/www/types/person_database/search_person_request.d.ts +15 -0
|
@@ -0,0 +1,719 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
00E356F31AD99517003FC87E /* FaceSDKTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FaceSDKTests.m */; };
|
|
11
|
+
0C80B921A6F3F58F76C31292 /* libPods-FaceSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-FaceSDK.a */; };
|
|
12
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
13
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
14
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
15
|
+
34BE021E2B88CF0100304333 /* license in Resources */ = {isa = PBXBuildFile; fileRef = 34BE021D2B88CF0100304333 /* license */; };
|
|
16
|
+
7699B88040F8A987B510C191 /* libPods-FaceSDK-FaceSDKTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-FaceSDK-FaceSDKTests.a */; };
|
|
17
|
+
79DCB8843C29DFE033F96497 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E0C083A781074E78FBE614FA /* PrivacyInfo.xcprivacy */; };
|
|
18
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
19
|
+
/* End PBXBuildFile section */
|
|
20
|
+
|
|
21
|
+
/* Begin PBXContainerItemProxy section */
|
|
22
|
+
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
|
23
|
+
isa = PBXContainerItemProxy;
|
|
24
|
+
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
25
|
+
proxyType = 1;
|
|
26
|
+
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
27
|
+
remoteInfo = FaceSDK;
|
|
28
|
+
};
|
|
29
|
+
/* End PBXContainerItemProxy section */
|
|
30
|
+
|
|
31
|
+
/* Begin PBXFileReference section */
|
|
32
|
+
00E356EE1AD99517003FC87E /* FaceSDKTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FaceSDKTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
33
|
+
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
34
|
+
00E356F21AD99517003FC87E /* FaceSDKTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FaceSDKTests.m; sourceTree = "<group>"; };
|
|
35
|
+
13B07F961A680F5B00A75B9A /* FaceSDK.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FaceSDK.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
36
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = FaceSDK/AppDelegate.h; sourceTree = "<group>"; };
|
|
37
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = FaceSDK/AppDelegate.mm; sourceTree = "<group>"; };
|
|
38
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = FaceSDK/Images.xcassets; sourceTree = "<group>"; };
|
|
39
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = FaceSDK/Info.plist; sourceTree = "<group>"; };
|
|
40
|
+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = FaceSDK/main.m; sourceTree = "<group>"; };
|
|
41
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = FaceSDK/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
42
|
+
19F6CBCC0A4E27FBF8BF4A61 /* libPods-FaceSDK-FaceSDKTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FaceSDK-FaceSDKTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
43
|
+
34BE021D2B88CF0100304333 /* license */ = {isa = PBXFileReference; lastKnownFileType = folder; path = license; sourceTree = "<group>"; };
|
|
44
|
+
3B4392A12AC88292D35C810B /* Pods-FaceSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FaceSDK.debug.xcconfig"; path = "Target Support Files/Pods-FaceSDK/Pods-FaceSDK.debug.xcconfig"; sourceTree = "<group>"; };
|
|
45
|
+
5709B34CF0A7D63546082F79 /* Pods-FaceSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FaceSDK.release.xcconfig"; path = "Target Support Files/Pods-FaceSDK/Pods-FaceSDK.release.xcconfig"; sourceTree = "<group>"; };
|
|
46
|
+
5B7EB9410499542E8C5724F5 /* Pods-FaceSDK-FaceSDKTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FaceSDK-FaceSDKTests.debug.xcconfig"; path = "Target Support Files/Pods-FaceSDK-FaceSDKTests/Pods-FaceSDK-FaceSDKTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
47
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-FaceSDK.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FaceSDK.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
48
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = FaceSDK/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
49
|
+
89C6BE57DB24E9ADA2F236DE /* Pods-FaceSDK-FaceSDKTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FaceSDK-FaceSDKTests.release.xcconfig"; path = "Target Support Files/Pods-FaceSDK-FaceSDKTests/Pods-FaceSDK-FaceSDKTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
50
|
+
E0C083A781074E78FBE614FA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = FaceSDK/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
51
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
52
|
+
/* End PBXFileReference section */
|
|
53
|
+
|
|
54
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
55
|
+
00E356EB1AD99517003FC87E /* Frameworks */ = {
|
|
56
|
+
isa = PBXFrameworksBuildPhase;
|
|
57
|
+
buildActionMask = 2147483647;
|
|
58
|
+
files = (
|
|
59
|
+
7699B88040F8A987B510C191 /* libPods-FaceSDK-FaceSDKTests.a in Frameworks */,
|
|
60
|
+
);
|
|
61
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
62
|
+
};
|
|
63
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
64
|
+
isa = PBXFrameworksBuildPhase;
|
|
65
|
+
buildActionMask = 2147483647;
|
|
66
|
+
files = (
|
|
67
|
+
0C80B921A6F3F58F76C31292 /* libPods-FaceSDK.a in Frameworks */,
|
|
68
|
+
);
|
|
69
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
70
|
+
};
|
|
71
|
+
/* End PBXFrameworksBuildPhase section */
|
|
72
|
+
|
|
73
|
+
/* Begin PBXGroup section */
|
|
74
|
+
00E356EF1AD99517003FC87E /* FaceSDKTests */ = {
|
|
75
|
+
isa = PBXGroup;
|
|
76
|
+
children = (
|
|
77
|
+
00E356F21AD99517003FC87E /* FaceSDKTests.m */,
|
|
78
|
+
00E356F01AD99517003FC87E /* Supporting Files */,
|
|
79
|
+
);
|
|
80
|
+
path = FaceSDKTests;
|
|
81
|
+
sourceTree = "<group>";
|
|
82
|
+
};
|
|
83
|
+
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
|
84
|
+
isa = PBXGroup;
|
|
85
|
+
children = (
|
|
86
|
+
00E356F11AD99517003FC87E /* Info.plist */,
|
|
87
|
+
);
|
|
88
|
+
name = "Supporting Files";
|
|
89
|
+
sourceTree = "<group>";
|
|
90
|
+
};
|
|
91
|
+
13B07FAE1A68108700A75B9A /* FaceSDK */ = {
|
|
92
|
+
isa = PBXGroup;
|
|
93
|
+
children = (
|
|
94
|
+
34BE021D2B88CF0100304333 /* license */,
|
|
95
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
96
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
|
|
97
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
98
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
99
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
100
|
+
13B07FB71A68108700A75B9A /* main.m */,
|
|
101
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
102
|
+
E0C083A781074E78FBE614FA /* PrivacyInfo.xcprivacy */,
|
|
103
|
+
);
|
|
104
|
+
name = FaceSDK;
|
|
105
|
+
sourceTree = "<group>";
|
|
106
|
+
};
|
|
107
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
108
|
+
isa = PBXGroup;
|
|
109
|
+
children = (
|
|
110
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
111
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-FaceSDK.a */,
|
|
112
|
+
19F6CBCC0A4E27FBF8BF4A61 /* libPods-FaceSDK-FaceSDKTests.a */,
|
|
113
|
+
);
|
|
114
|
+
name = Frameworks;
|
|
115
|
+
sourceTree = "<group>";
|
|
116
|
+
};
|
|
117
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
118
|
+
isa = PBXGroup;
|
|
119
|
+
children = (
|
|
120
|
+
);
|
|
121
|
+
name = Libraries;
|
|
122
|
+
sourceTree = "<group>";
|
|
123
|
+
};
|
|
124
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
125
|
+
isa = PBXGroup;
|
|
126
|
+
children = (
|
|
127
|
+
13B07FAE1A68108700A75B9A /* FaceSDK */,
|
|
128
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
129
|
+
00E356EF1AD99517003FC87E /* FaceSDKTests */,
|
|
130
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
131
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
132
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
133
|
+
);
|
|
134
|
+
indentWidth = 2;
|
|
135
|
+
sourceTree = "<group>";
|
|
136
|
+
tabWidth = 2;
|
|
137
|
+
usesTabs = 0;
|
|
138
|
+
};
|
|
139
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
140
|
+
isa = PBXGroup;
|
|
141
|
+
children = (
|
|
142
|
+
13B07F961A680F5B00A75B9A /* FaceSDK.app */,
|
|
143
|
+
00E356EE1AD99517003FC87E /* FaceSDKTests.xctest */,
|
|
144
|
+
);
|
|
145
|
+
name = Products;
|
|
146
|
+
sourceTree = "<group>";
|
|
147
|
+
};
|
|
148
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
149
|
+
isa = PBXGroup;
|
|
150
|
+
children = (
|
|
151
|
+
3B4392A12AC88292D35C810B /* Pods-FaceSDK.debug.xcconfig */,
|
|
152
|
+
5709B34CF0A7D63546082F79 /* Pods-FaceSDK.release.xcconfig */,
|
|
153
|
+
5B7EB9410499542E8C5724F5 /* Pods-FaceSDK-FaceSDKTests.debug.xcconfig */,
|
|
154
|
+
89C6BE57DB24E9ADA2F236DE /* Pods-FaceSDK-FaceSDKTests.release.xcconfig */,
|
|
155
|
+
);
|
|
156
|
+
path = Pods;
|
|
157
|
+
sourceTree = "<group>";
|
|
158
|
+
};
|
|
159
|
+
/* End PBXGroup section */
|
|
160
|
+
|
|
161
|
+
/* Begin PBXNativeTarget section */
|
|
162
|
+
00E356ED1AD99517003FC87E /* FaceSDKTests */ = {
|
|
163
|
+
isa = PBXNativeTarget;
|
|
164
|
+
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FaceSDKTests" */;
|
|
165
|
+
buildPhases = (
|
|
166
|
+
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
|
|
167
|
+
00E356EA1AD99517003FC87E /* Sources */,
|
|
168
|
+
00E356EB1AD99517003FC87E /* Frameworks */,
|
|
169
|
+
00E356EC1AD99517003FC87E /* Resources */,
|
|
170
|
+
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
|
|
171
|
+
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
|
|
172
|
+
);
|
|
173
|
+
buildRules = (
|
|
174
|
+
);
|
|
175
|
+
dependencies = (
|
|
176
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
|
177
|
+
);
|
|
178
|
+
name = FaceSDKTests;
|
|
179
|
+
productName = FaceSDKTests;
|
|
180
|
+
productReference = 00E356EE1AD99517003FC87E /* FaceSDKTests.xctest */;
|
|
181
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
182
|
+
};
|
|
183
|
+
13B07F861A680F5B00A75B9A /* FaceSDK */ = {
|
|
184
|
+
isa = PBXNativeTarget;
|
|
185
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FaceSDK" */;
|
|
186
|
+
buildPhases = (
|
|
187
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
|
188
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
189
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
190
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
191
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
192
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
|
|
193
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
|
|
194
|
+
);
|
|
195
|
+
buildRules = (
|
|
196
|
+
);
|
|
197
|
+
dependencies = (
|
|
198
|
+
);
|
|
199
|
+
name = FaceSDK;
|
|
200
|
+
productName = FaceSDK;
|
|
201
|
+
productReference = 13B07F961A680F5B00A75B9A /* FaceSDK.app */;
|
|
202
|
+
productType = "com.apple.product-type.application";
|
|
203
|
+
};
|
|
204
|
+
/* End PBXNativeTarget section */
|
|
205
|
+
|
|
206
|
+
/* Begin PBXProject section */
|
|
207
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
208
|
+
isa = PBXProject;
|
|
209
|
+
attributes = {
|
|
210
|
+
LastUpgradeCheck = 1210;
|
|
211
|
+
TargetAttributes = {
|
|
212
|
+
00E356ED1AD99517003FC87E = {
|
|
213
|
+
CreatedOnToolsVersion = 6.2;
|
|
214
|
+
TestTargetID = 13B07F861A680F5B00A75B9A;
|
|
215
|
+
};
|
|
216
|
+
13B07F861A680F5B00A75B9A = {
|
|
217
|
+
LastSwiftMigration = 1120;
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FaceSDK" */;
|
|
222
|
+
compatibilityVersion = "Xcode 12.0";
|
|
223
|
+
developmentRegion = en;
|
|
224
|
+
hasScannedForEncodings = 0;
|
|
225
|
+
knownRegions = (
|
|
226
|
+
en,
|
|
227
|
+
Base,
|
|
228
|
+
);
|
|
229
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
230
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
231
|
+
projectDirPath = "";
|
|
232
|
+
projectRoot = "";
|
|
233
|
+
targets = (
|
|
234
|
+
13B07F861A680F5B00A75B9A /* FaceSDK */,
|
|
235
|
+
00E356ED1AD99517003FC87E /* FaceSDKTests */,
|
|
236
|
+
);
|
|
237
|
+
};
|
|
238
|
+
/* End PBXProject section */
|
|
239
|
+
|
|
240
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
241
|
+
00E356EC1AD99517003FC87E /* Resources */ = {
|
|
242
|
+
isa = PBXResourcesBuildPhase;
|
|
243
|
+
buildActionMask = 2147483647;
|
|
244
|
+
files = (
|
|
245
|
+
);
|
|
246
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
247
|
+
};
|
|
248
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
249
|
+
isa = PBXResourcesBuildPhase;
|
|
250
|
+
buildActionMask = 2147483647;
|
|
251
|
+
files = (
|
|
252
|
+
34BE021E2B88CF0100304333 /* license in Resources */,
|
|
253
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
254
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
255
|
+
79DCB8843C29DFE033F96497 /* PrivacyInfo.xcprivacy in Resources */,
|
|
256
|
+
);
|
|
257
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
258
|
+
};
|
|
259
|
+
/* End PBXResourcesBuildPhase section */
|
|
260
|
+
|
|
261
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
262
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
263
|
+
isa = PBXShellScriptBuildPhase;
|
|
264
|
+
buildActionMask = 2147483647;
|
|
265
|
+
files = (
|
|
266
|
+
);
|
|
267
|
+
inputPaths = (
|
|
268
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
269
|
+
"$(SRCROOT)/.xcode.env",
|
|
270
|
+
);
|
|
271
|
+
name = "Bundle React Native code and images";
|
|
272
|
+
outputPaths = (
|
|
273
|
+
);
|
|
274
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
275
|
+
shellPath = /bin/sh;
|
|
276
|
+
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
|
277
|
+
};
|
|
278
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
|
279
|
+
isa = PBXShellScriptBuildPhase;
|
|
280
|
+
buildActionMask = 2147483647;
|
|
281
|
+
files = (
|
|
282
|
+
);
|
|
283
|
+
inputFileListPaths = (
|
|
284
|
+
"${PODS_ROOT}/Target Support Files/Pods-FaceSDK/Pods-FaceSDK-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
285
|
+
);
|
|
286
|
+
name = "[CP] Embed Pods Frameworks";
|
|
287
|
+
outputFileListPaths = (
|
|
288
|
+
"${PODS_ROOT}/Target Support Files/Pods-FaceSDK/Pods-FaceSDK-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
289
|
+
);
|
|
290
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
291
|
+
shellPath = /bin/sh;
|
|
292
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FaceSDK/Pods-FaceSDK-frameworks.sh\"\n";
|
|
293
|
+
showEnvVarsInLog = 0;
|
|
294
|
+
};
|
|
295
|
+
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
|
|
296
|
+
isa = PBXShellScriptBuildPhase;
|
|
297
|
+
buildActionMask = 2147483647;
|
|
298
|
+
files = (
|
|
299
|
+
);
|
|
300
|
+
inputFileListPaths = (
|
|
301
|
+
);
|
|
302
|
+
inputPaths = (
|
|
303
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
304
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
305
|
+
);
|
|
306
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
307
|
+
outputFileListPaths = (
|
|
308
|
+
);
|
|
309
|
+
outputPaths = (
|
|
310
|
+
"$(DERIVED_FILE_DIR)/Pods-FaceSDK-FaceSDKTests-checkManifestLockResult.txt",
|
|
311
|
+
);
|
|
312
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
313
|
+
shellPath = /bin/sh;
|
|
314
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
315
|
+
showEnvVarsInLog = 0;
|
|
316
|
+
};
|
|
317
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
318
|
+
isa = PBXShellScriptBuildPhase;
|
|
319
|
+
buildActionMask = 2147483647;
|
|
320
|
+
files = (
|
|
321
|
+
);
|
|
322
|
+
inputFileListPaths = (
|
|
323
|
+
);
|
|
324
|
+
inputPaths = (
|
|
325
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
326
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
327
|
+
);
|
|
328
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
329
|
+
outputFileListPaths = (
|
|
330
|
+
);
|
|
331
|
+
outputPaths = (
|
|
332
|
+
"$(DERIVED_FILE_DIR)/Pods-FaceSDK-checkManifestLockResult.txt",
|
|
333
|
+
);
|
|
334
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
335
|
+
shellPath = /bin/sh;
|
|
336
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
337
|
+
showEnvVarsInLog = 0;
|
|
338
|
+
};
|
|
339
|
+
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
|
|
340
|
+
isa = PBXShellScriptBuildPhase;
|
|
341
|
+
buildActionMask = 2147483647;
|
|
342
|
+
files = (
|
|
343
|
+
);
|
|
344
|
+
inputFileListPaths = (
|
|
345
|
+
"${PODS_ROOT}/Target Support Files/Pods-FaceSDK-FaceSDKTests/Pods-FaceSDK-FaceSDKTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
346
|
+
);
|
|
347
|
+
name = "[CP] Embed Pods Frameworks";
|
|
348
|
+
outputFileListPaths = (
|
|
349
|
+
"${PODS_ROOT}/Target Support Files/Pods-FaceSDK-FaceSDKTests/Pods-FaceSDK-FaceSDKTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
350
|
+
);
|
|
351
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
352
|
+
shellPath = /bin/sh;
|
|
353
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FaceSDK-FaceSDKTests/Pods-FaceSDK-FaceSDKTests-frameworks.sh\"\n";
|
|
354
|
+
showEnvVarsInLog = 0;
|
|
355
|
+
};
|
|
356
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
357
|
+
isa = PBXShellScriptBuildPhase;
|
|
358
|
+
buildActionMask = 2147483647;
|
|
359
|
+
files = (
|
|
360
|
+
);
|
|
361
|
+
inputFileListPaths = (
|
|
362
|
+
"${PODS_ROOT}/Target Support Files/Pods-FaceSDK/Pods-FaceSDK-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
363
|
+
);
|
|
364
|
+
name = "[CP] Copy Pods Resources";
|
|
365
|
+
outputFileListPaths = (
|
|
366
|
+
"${PODS_ROOT}/Target Support Files/Pods-FaceSDK/Pods-FaceSDK-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
367
|
+
);
|
|
368
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
369
|
+
shellPath = /bin/sh;
|
|
370
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FaceSDK/Pods-FaceSDK-resources.sh\"\n";
|
|
371
|
+
showEnvVarsInLog = 0;
|
|
372
|
+
};
|
|
373
|
+
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
|
|
374
|
+
isa = PBXShellScriptBuildPhase;
|
|
375
|
+
buildActionMask = 2147483647;
|
|
376
|
+
files = (
|
|
377
|
+
);
|
|
378
|
+
inputFileListPaths = (
|
|
379
|
+
"${PODS_ROOT}/Target Support Files/Pods-FaceSDK-FaceSDKTests/Pods-FaceSDK-FaceSDKTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
380
|
+
);
|
|
381
|
+
name = "[CP] Copy Pods Resources";
|
|
382
|
+
outputFileListPaths = (
|
|
383
|
+
"${PODS_ROOT}/Target Support Files/Pods-FaceSDK-FaceSDKTests/Pods-FaceSDK-FaceSDKTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
384
|
+
);
|
|
385
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
386
|
+
shellPath = /bin/sh;
|
|
387
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FaceSDK-FaceSDKTests/Pods-FaceSDK-FaceSDKTests-resources.sh\"\n";
|
|
388
|
+
showEnvVarsInLog = 0;
|
|
389
|
+
};
|
|
390
|
+
/* End PBXShellScriptBuildPhase section */
|
|
391
|
+
|
|
392
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
393
|
+
00E356EA1AD99517003FC87E /* Sources */ = {
|
|
394
|
+
isa = PBXSourcesBuildPhase;
|
|
395
|
+
buildActionMask = 2147483647;
|
|
396
|
+
files = (
|
|
397
|
+
00E356F31AD99517003FC87E /* FaceSDKTests.m in Sources */,
|
|
398
|
+
);
|
|
399
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
400
|
+
};
|
|
401
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
402
|
+
isa = PBXSourcesBuildPhase;
|
|
403
|
+
buildActionMask = 2147483647;
|
|
404
|
+
files = (
|
|
405
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
|
|
406
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
407
|
+
);
|
|
408
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
409
|
+
};
|
|
410
|
+
/* End PBXSourcesBuildPhase section */
|
|
411
|
+
|
|
412
|
+
/* Begin PBXTargetDependency section */
|
|
413
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
|
414
|
+
isa = PBXTargetDependency;
|
|
415
|
+
target = 13B07F861A680F5B00A75B9A /* FaceSDK */;
|
|
416
|
+
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
|
417
|
+
};
|
|
418
|
+
/* End PBXTargetDependency section */
|
|
419
|
+
|
|
420
|
+
/* Begin XCBuildConfiguration section */
|
|
421
|
+
00E356F61AD99517003FC87E /* Debug */ = {
|
|
422
|
+
isa = XCBuildConfiguration;
|
|
423
|
+
baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-FaceSDK-FaceSDKTests.debug.xcconfig */;
|
|
424
|
+
buildSettings = {
|
|
425
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
426
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
427
|
+
"DEBUG=1",
|
|
428
|
+
"$(inherited)",
|
|
429
|
+
);
|
|
430
|
+
INFOPLIST_FILE = FaceSDKTests/Info.plist;
|
|
431
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
|
432
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
433
|
+
"$(inherited)",
|
|
434
|
+
"@executable_path/Frameworks",
|
|
435
|
+
"@loader_path/Frameworks",
|
|
436
|
+
);
|
|
437
|
+
OTHER_LDFLAGS = (
|
|
438
|
+
"-ObjC",
|
|
439
|
+
"-lc++",
|
|
440
|
+
"$(inherited)",
|
|
441
|
+
);
|
|
442
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.face.api;
|
|
443
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
444
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FaceSDK.app/FaceSDK";
|
|
445
|
+
};
|
|
446
|
+
name = Debug;
|
|
447
|
+
};
|
|
448
|
+
00E356F71AD99517003FC87E /* Release */ = {
|
|
449
|
+
isa = XCBuildConfiguration;
|
|
450
|
+
baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-FaceSDK-FaceSDKTests.release.xcconfig */;
|
|
451
|
+
buildSettings = {
|
|
452
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
453
|
+
COPY_PHASE_STRIP = NO;
|
|
454
|
+
INFOPLIST_FILE = FaceSDKTests/Info.plist;
|
|
455
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
|
456
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
457
|
+
"$(inherited)",
|
|
458
|
+
"@executable_path/Frameworks",
|
|
459
|
+
"@loader_path/Frameworks",
|
|
460
|
+
);
|
|
461
|
+
OTHER_LDFLAGS = (
|
|
462
|
+
"-ObjC",
|
|
463
|
+
"-lc++",
|
|
464
|
+
"$(inherited)",
|
|
465
|
+
);
|
|
466
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.face.api;
|
|
467
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
468
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FaceSDK.app/FaceSDK";
|
|
469
|
+
};
|
|
470
|
+
name = Release;
|
|
471
|
+
};
|
|
472
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
473
|
+
isa = XCBuildConfiguration;
|
|
474
|
+
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-FaceSDK.debug.xcconfig */;
|
|
475
|
+
buildSettings = {
|
|
476
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
477
|
+
CLANG_ENABLE_MODULES = YES;
|
|
478
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
479
|
+
DEVELOPMENT_TEAM = H6WR54S268;
|
|
480
|
+
ENABLE_BITCODE = NO;
|
|
481
|
+
INFOPLIST_FILE = FaceSDK/Info.plist;
|
|
482
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
483
|
+
"$(inherited)",
|
|
484
|
+
"@executable_path/Frameworks",
|
|
485
|
+
);
|
|
486
|
+
MARKETING_VERSION = 1.0;
|
|
487
|
+
OTHER_LDFLAGS = (
|
|
488
|
+
"$(inherited)",
|
|
489
|
+
"-ObjC",
|
|
490
|
+
"-lc++",
|
|
491
|
+
);
|
|
492
|
+
PRODUCT_BUNDLE_IDENTIFIER = regula.FaceSDKSample;
|
|
493
|
+
PRODUCT_NAME = FaceSDK;
|
|
494
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
495
|
+
SWIFT_VERSION = 5.0;
|
|
496
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
497
|
+
};
|
|
498
|
+
name = Debug;
|
|
499
|
+
};
|
|
500
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
501
|
+
isa = XCBuildConfiguration;
|
|
502
|
+
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-FaceSDK.release.xcconfig */;
|
|
503
|
+
buildSettings = {
|
|
504
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
505
|
+
CLANG_ENABLE_MODULES = YES;
|
|
506
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
507
|
+
DEVELOPMENT_TEAM = H6WR54S268;
|
|
508
|
+
INFOPLIST_FILE = FaceSDK/Info.plist;
|
|
509
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
510
|
+
"$(inherited)",
|
|
511
|
+
"@executable_path/Frameworks",
|
|
512
|
+
);
|
|
513
|
+
MARKETING_VERSION = 1.0;
|
|
514
|
+
OTHER_LDFLAGS = (
|
|
515
|
+
"$(inherited)",
|
|
516
|
+
"-ObjC",
|
|
517
|
+
"-lc++",
|
|
518
|
+
);
|
|
519
|
+
PRODUCT_BUNDLE_IDENTIFIER = regula.FaceSDKSample;
|
|
520
|
+
PRODUCT_NAME = FaceSDK;
|
|
521
|
+
SWIFT_VERSION = 5.0;
|
|
522
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
523
|
+
};
|
|
524
|
+
name = Release;
|
|
525
|
+
};
|
|
526
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
527
|
+
isa = XCBuildConfiguration;
|
|
528
|
+
buildSettings = {
|
|
529
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
530
|
+
CC = "";
|
|
531
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
532
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
533
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
534
|
+
CLANG_ENABLE_MODULES = YES;
|
|
535
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
536
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
537
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
538
|
+
CLANG_WARN_COMMA = YES;
|
|
539
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
540
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
541
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
542
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
543
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
544
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
545
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
546
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
547
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
548
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
549
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
550
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
551
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
552
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
553
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
554
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
555
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
556
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
557
|
+
COPY_PHASE_STRIP = NO;
|
|
558
|
+
CXX = "";
|
|
559
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
560
|
+
ENABLE_TESTABILITY = YES;
|
|
561
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
562
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
563
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
564
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
565
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
566
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
567
|
+
"DEBUG=1",
|
|
568
|
+
"$(inherited)",
|
|
569
|
+
);
|
|
570
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
571
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
572
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
573
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
574
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
575
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
576
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
577
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
|
578
|
+
LD = "";
|
|
579
|
+
LDPLUSPLUS = "";
|
|
580
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
581
|
+
/usr/lib/swift,
|
|
582
|
+
"$(inherited)",
|
|
583
|
+
);
|
|
584
|
+
LIBRARY_SEARCH_PATHS = (
|
|
585
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
586
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
587
|
+
"\"$(inherited)\"",
|
|
588
|
+
);
|
|
589
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
590
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
591
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
592
|
+
"$(OTHER_CFLAGS)",
|
|
593
|
+
"-DFOLLY_NO_CONFIG",
|
|
594
|
+
"-DFOLLY_MOBILE=1",
|
|
595
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
596
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
597
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
598
|
+
);
|
|
599
|
+
OTHER_LDFLAGS = (
|
|
600
|
+
"$(inherited)",
|
|
601
|
+
" ",
|
|
602
|
+
);
|
|
603
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
604
|
+
SDKROOT = iphoneos;
|
|
605
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
606
|
+
USE_HERMES = true;
|
|
607
|
+
};
|
|
608
|
+
name = Debug;
|
|
609
|
+
};
|
|
610
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
611
|
+
isa = XCBuildConfiguration;
|
|
612
|
+
buildSettings = {
|
|
613
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
614
|
+
CC = "";
|
|
615
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
616
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
617
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
618
|
+
CLANG_ENABLE_MODULES = YES;
|
|
619
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
620
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
621
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
622
|
+
CLANG_WARN_COMMA = YES;
|
|
623
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
624
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
625
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
626
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
627
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
628
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
629
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
630
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
631
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
632
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
633
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
634
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
635
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
636
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
637
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
638
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
639
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
640
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
641
|
+
COPY_PHASE_STRIP = YES;
|
|
642
|
+
CXX = "";
|
|
643
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
644
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
645
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
646
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
647
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
648
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
649
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
650
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
651
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
652
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
653
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
654
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
|
|
655
|
+
LD = "";
|
|
656
|
+
LDPLUSPLUS = "";
|
|
657
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
658
|
+
/usr/lib/swift,
|
|
659
|
+
"$(inherited)",
|
|
660
|
+
);
|
|
661
|
+
LIBRARY_SEARCH_PATHS = (
|
|
662
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
663
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
664
|
+
"\"$(inherited)\"",
|
|
665
|
+
);
|
|
666
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
667
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
668
|
+
"$(OTHER_CFLAGS)",
|
|
669
|
+
"-DFOLLY_NO_CONFIG",
|
|
670
|
+
"-DFOLLY_MOBILE=1",
|
|
671
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
672
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
673
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
674
|
+
);
|
|
675
|
+
OTHER_LDFLAGS = (
|
|
676
|
+
"$(inherited)",
|
|
677
|
+
" ",
|
|
678
|
+
);
|
|
679
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
680
|
+
SDKROOT = iphoneos;
|
|
681
|
+
USE_HERMES = true;
|
|
682
|
+
VALIDATE_PRODUCT = YES;
|
|
683
|
+
};
|
|
684
|
+
name = Release;
|
|
685
|
+
};
|
|
686
|
+
/* End XCBuildConfiguration section */
|
|
687
|
+
|
|
688
|
+
/* Begin XCConfigurationList section */
|
|
689
|
+
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FaceSDKTests" */ = {
|
|
690
|
+
isa = XCConfigurationList;
|
|
691
|
+
buildConfigurations = (
|
|
692
|
+
00E356F61AD99517003FC87E /* Debug */,
|
|
693
|
+
00E356F71AD99517003FC87E /* Release */,
|
|
694
|
+
);
|
|
695
|
+
defaultConfigurationIsVisible = 0;
|
|
696
|
+
defaultConfigurationName = Release;
|
|
697
|
+
};
|
|
698
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FaceSDK" */ = {
|
|
699
|
+
isa = XCConfigurationList;
|
|
700
|
+
buildConfigurations = (
|
|
701
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
702
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
703
|
+
);
|
|
704
|
+
defaultConfigurationIsVisible = 0;
|
|
705
|
+
defaultConfigurationName = Release;
|
|
706
|
+
};
|
|
707
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FaceSDK" */ = {
|
|
708
|
+
isa = XCConfigurationList;
|
|
709
|
+
buildConfigurations = (
|
|
710
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
711
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
712
|
+
);
|
|
713
|
+
defaultConfigurationIsVisible = 0;
|
|
714
|
+
defaultConfigurationName = Release;
|
|
715
|
+
};
|
|
716
|
+
/* End XCConfigurationList section */
|
|
717
|
+
};
|
|
718
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
719
|
+
}
|