@regulaforensics/face-sdk 7.1.210-rc → 7.1.252-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 +1 -1
- package/RNFaceSDK.podspec +3 -3
- package/android/CVDFaceSDK.kt +22 -8
- package/android/build.gradle +1 -1
- package/android/cordova.gradle +1 -1
- package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +9 -1
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +2 -0
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +15 -9
- package/android/src/main/java/com/regula/plugin/facesdk/RNFaceApiModule.kt +16 -6
- package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +32 -2
- package/examples/capacitor/README.md +3 -8
- package/examples/capacitor/android/app/build.gradle +2 -6
- package/examples/capacitor/android/app/capacitor.build.gradle +4 -4
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +3 -16
- package/examples/capacitor/android/app/src/main/java/com/regula/{faceapi → documentreader}/MainActivity.java +1 -1
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +2 -2
- package/examples/capacitor/android/build.gradle +1 -1
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/examples/capacitor/android/gradlew +21 -13
- package/examples/capacitor/android/gradlew.bat +12 -10
- package/examples/capacitor/android/variables.gradle +11 -11
- package/examples/capacitor/index.html +8 -104
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +4 -4
- package/examples/capacitor/ios/App/Podfile +2 -3
- package/examples/capacitor/ios/App/Podfile.lock +57 -0
- package/examples/capacitor/package-lock.json +3536 -0
- package/examples/capacitor/package.json +19 -56
- package/examples/capacitor/public/images/portrait.png +0 -0
- package/examples/capacitor/scripts/setup.sh +2 -0
- package/examples/capacitor/src/main.css +77 -0
- package/examples/capacitor/src/main.html +22 -0
- package/examples/capacitor/src/main.tsx +152 -11
- package/examples/capacitor/tsconfig.json +1 -17
- package/examples/capacitor/vite.config.ts +10 -9
- package/examples/cordova/README.md +4 -6
- package/examples/cordova/config.xml +4 -15
- package/examples/cordova/package-lock.json +1333 -0
- package/examples/cordova/package.json +8 -12
- package/examples/cordova/scripts/setup.sh +4 -1
- package/examples/cordova/www/images/portrait.png +0 -0
- package/examples/cordova/www/index.html +19 -92
- package/examples/cordova/www/src/main.css +77 -0
- package/examples/cordova/www/src/main.html +22 -0
- package/examples/cordova/www/{js/index.js → src/main.js} +41 -43
- package/examples/ionic/README.md +3 -6
- package/examples/ionic/angular.json +6 -154
- package/examples/ionic/config.xml +4 -93
- package/examples/ionic/index.html +19 -0
- package/examples/ionic/index.ts +17 -0
- package/examples/ionic/package-lock.json +13777 -0
- package/examples/ionic/package.json +24 -75
- package/examples/ionic/scripts/setup.sh +4 -1
- package/examples/ionic/src/images/portrait.png +0 -0
- package/examples/ionic/src/main.css +77 -0
- package/examples/ionic/src/main.html +22 -0
- package/examples/ionic/src/main.ts +157 -8
- package/examples/ionic/tsconfig.json +6 -20
- package/examples/react-native/Gemfile +7 -0
- package/examples/react-native/Gemfile.lock +28 -21
- package/examples/react-native/README.md +4 -10
- package/examples/react-native/android/app/build.gradle +2 -70
- package/examples/react-native/android/app/src/main/AndroidManifest.xml +21 -21
- package/examples/react-native/android/app/src/main/java/com/regula/{face/api → documentreader}/MainActivity.kt +2 -2
- package/examples/react-native/android/app/src/main/java/com/regula/{face/api → documentreader}/MainApplication.kt +1 -1
- package/examples/react-native/android/build.gradle +3 -3
- package/examples/react-native/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/examples/react-native/android/gradle.properties +0 -34
- package/examples/react-native/android/gradlew +1 -2
- package/examples/react-native/android/settings.gradle +1 -1
- package/examples/react-native/images/portrait.png +0 -0
- package/examples/react-native/index.html +11 -0
- package/examples/react-native/index.tsx +51 -0
- package/examples/react-native/ios/{FaceSDK → App}/AppDelegate.mm +1 -1
- package/examples/react-native/ios/{FaceSDK.xcodeproj → App.xcodeproj}/project.pbxproj +52 -269
- package/examples/react-native/ios/{FaceSDK.xcodeproj/xcshareddata/xcschemes/FaceSDK.xcscheme → App.xcodeproj/xcshareddata/xcschemes/App.xcscheme} +9 -27
- package/examples/react-native/ios/{FaceSDK.xcworkspace → App.xcworkspace}/contents.xcworkspacedata +1 -1
- package/examples/react-native/ios/Podfile +3 -6
- package/examples/react-native/ios/Podfile.lock +565 -512
- package/examples/react-native/metro.config.js +16 -11
- package/examples/react-native/package-lock.json +2121 -6901
- package/examples/react-native/package.json +12 -34
- package/examples/react-native/patches/react-native-webview+13.13.5.patch +36 -0
- package/examples/react-native/scripts/android.sh +5 -0
- package/examples/react-native/scripts/ios.sh +5 -1
- package/examples/react-native/src/main.css +77 -0
- package/examples/react-native/src/main.html +22 -0
- package/examples/react-native/{App.tsx → src/main.tsx} +19 -86
- package/ios/RFSWConfig.m +7 -1
- package/ios/RFSWJSONConstructor.h +2 -0
- package/ios/RFSWJSONConstructor.m +32 -15
- package/ios/RFSWMain.m +1 -1
- package/package.json +1 -1
- package/plugin.xml +4 -4
- package/www/capacitor/detect_faces/detect_faces_request.js +2 -0
- package/www/capacitor/face_capture/face_capture_config.js +6 -2
- package/www/capacitor/image_quality/image_quality_characteristic.js +2 -0
- package/www/capacitor/image_quality/image_quality_group.js +1 -0
- package/www/capacitor/init/init_config.js +8 -0
- package/www/capacitor/internal/bridge.js +8 -7
- package/www/capacitor/liveness/liveness_backend_exception.js +8 -0
- package/www/capacitor/liveness/liveness_config.js +3 -3
- package/www/capacitor/person_database/person_database.js +1 -1
- package/www/cordova.js +109 -80
- package/www/react-native/detect_faces/detect_faces_request.js +2 -0
- package/www/react-native/face_capture/face_capture_config.js +6 -2
- package/www/react-native/image_quality/image_quality_characteristic.js +2 -0
- package/www/react-native/image_quality/image_quality_group.js +1 -0
- package/www/react-native/init/init_config.js +8 -0
- package/www/react-native/internal/bridge.js +8 -7
- package/www/react-native/liveness/liveness_backend_exception.js +8 -0
- package/www/react-native/liveness/liveness_config.js +3 -3
- package/www/react-native/person_database/person_database.js +1 -1
- package/www/types/face_capture/face_capture_config.d.ts +6 -1
- package/www/types/init/init_config.d.ts +7 -1
- package/www/types/liveness/liveness_backend_exception.d.ts +9 -1
- package/www/types/liveness/liveness_config.d.ts +1 -1
- package/www/types/person_database/person_database.d.ts +1 -1
- package/.gitlab/report.yaml +0 -75
- package/.gitlab-ci.yml +0 -49
- package/examples/capacitor/.browserslistrc +0 -6
- package/examples/capacitor/.eslintrc.js +0 -17
- package/examples/capacitor/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java +0 -26
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_background.xml +0 -170
- 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 +0 -34
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +0 -5
- package/examples/capacitor/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +0 -5
- 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_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 +0 -4
- package/examples/capacitor/android/app/src/main/res/xml/file_paths.xml +0 -5
- package/examples/capacitor/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java +0 -18
- package/examples/capacitor/capacitor.config.ts +0 -12
- package/examples/capacitor/cypress/e2e/test.cy.ts +0 -6
- package/examples/capacitor/cypress/fixtures/example.json +0 -5
- package/examples/capacitor/cypress/support/commands.ts +0 -37
- package/examples/capacitor/cypress/support/e2e.ts +0 -20
- package/examples/capacitor/cypress.config.ts +0 -10
- 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 +0 -21
- package/examples/capacitor/src/App.test.tsx +0 -8
- package/examples/capacitor/src/App.tsx +0 -42
- package/examples/capacitor/src/components/ExploreContainer.css +0 -24
- package/examples/capacitor/src/components/ExploreContainer.tsx +0 -14
- package/examples/capacitor/src/pages/Home.tsx +0 -159
- package/examples/capacitor/src/setupTests.ts +0 -14
- package/examples/capacitor/src/theme/variables.css +0 -242
- package/examples/capacitor/src/vite-env.d.ts +0 -1
- package/examples/capacitor/tsconfig.node.json +0 -9
- package/examples/cordova/jsconfig.json +0 -1
- package/examples/cordova/www/css/index.css +0 -107
- package/examples/cordova/www/img/id.png +0 -0
- package/examples/cordova/www/img/portrait.png +0 -0
- package/examples/ionic/browserslist +0 -12
- package/examples/ionic/e2e/protractor.conf.js +0 -28
- package/examples/ionic/e2e/src/app.e2e-spec.ts +0 -14
- package/examples/ionic/e2e/src/app.po.ts +0 -11
- package/examples/ionic/e2e/tsconfig.json +0 -13
- package/examples/ionic/karma.conf.js +0 -31
- package/examples/ionic/resources/README.md +0 -8
- 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 +0 -6
- 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 +0 -15
- package/examples/ionic/src/app/app.component.html +0 -3
- package/examples/ionic/src/app/app.component.spec.ts +0 -47
- package/examples/ionic/src/app/app.component.ts +0 -27
- package/examples/ionic/src/app/app.module.ts +0 -23
- package/examples/ionic/src/app/home/home.module.ts +0 -29
- package/examples/ionic/src/app/home/home.page.html +0 -75
- package/examples/ionic/src/app/home/home.page.scss +0 -1
- package/examples/ionic/src/app/home/home.page.spec.ts +0 -24
- package/examples/ionic/src/app/home/home.page.ts +0 -166
- 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 +0 -1
- package/examples/ionic/src/environments/environment.prod.ts +0 -3
- package/examples/ionic/src/environments/environment.ts +0 -16
- package/examples/ionic/src/global.scss +0 -31
- package/examples/ionic/src/index.html +0 -25
- package/examples/ionic/src/polyfills.ts +0 -66
- package/examples/ionic/src/test.ts +0 -20
- package/examples/ionic/src/theme/variables.scss +0 -77
- package/examples/ionic/src/zone-flags.ts +0 -5
- package/examples/ionic/tsconfig.app.json +0 -14
- package/examples/ionic/tsconfig.spec.json +0 -19
- package/examples/ionic/tslint.json +0 -88
- package/examples/react-native/.watchmanconfig +0 -1
- package/examples/react-native/android/app/proguard-rules.pro +0 -10
- package/examples/react-native/android/app/src/debug/AndroidManifest.xml +0 -9
- package/examples/react-native/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -37
- 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/values/strings.xml +0 -3
- package/examples/react-native/android/app/src/main/res/values/styles.xml +0 -9
- package/examples/react-native/app.json +0 -5
- package/examples/react-native/index.js +0 -5
- package/examples/react-native/ios/FaceSDKTests/FaceSDKTests.m +0 -66
- package/examples/react-native/ios/FaceSDKTests/Info.plist +0 -24
- /package/examples/capacitor/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher.png +0 -0
- /package/examples/cordova/www/{img → images}/logo.png +0 -0
- /package/examples/ionic/src/{app/app.component.scss → assets/.gitkeep} +0 -0
- /package/examples/ionic/{resources → src/images}/icon.png +0 -0
- /package/examples/react-native/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher.png +0 -0
- /package/examples/react-native/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher_round.png +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/AppDelegate.h +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/Images.xcassets/Contents.json +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/Info.plist +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/LaunchScreen.storyboard +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/PrivacyInfo.xcprivacy +0 -0
- /package/examples/react-native/ios/{FaceSDK → App}/main.m +0 -0
- /package/examples/react-native/ios/{FaceSDK.xcworkspace → App.xcworkspace}/xcshareddata/IDEWorkspaceChecks.plist +0 -0
|
@@ -7,88 +7,45 @@
|
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
-
|
|
11
|
-
0C80B921A6F3F58F76C31292 /* libPods-FaceSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-FaceSDK.a */; };
|
|
10
|
+
0C80B921A6F3F58F76C31292 /* libPods-App.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-App.a */; };
|
|
12
11
|
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
13
12
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
14
13
|
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
15
14
|
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
15
|
79DCB8843C29DFE033F96497 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E0C083A781074E78FBE614FA /* PrivacyInfo.xcprivacy */; };
|
|
18
16
|
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
19
17
|
/* End PBXBuildFile section */
|
|
20
18
|
|
|
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
19
|
/* Begin PBXFileReference section */
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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; };
|
|
20
|
+
13B07F961A680F5B00A75B9A /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
21
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = App/AppDelegate.h; sourceTree = "<group>"; };
|
|
22
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = App/AppDelegate.mm; sourceTree = "<group>"; };
|
|
23
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = App/Images.xcassets; sourceTree = "<group>"; };
|
|
24
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = App/Info.plist; sourceTree = "<group>"; };
|
|
25
|
+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = App/main.m; sourceTree = "<group>"; };
|
|
26
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = App/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
43
27
|
34BE021D2B88CF0100304333 /* license */ = {isa = PBXFileReference; lastKnownFileType = folder; path = license; sourceTree = "<group>"; };
|
|
44
|
-
3B4392A12AC88292D35C810B /* Pods-
|
|
45
|
-
5709B34CF0A7D63546082F79 /* Pods-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
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>"; };
|
|
28
|
+
3B4392A12AC88292D35C810B /* Pods-App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.debug.xcconfig"; path = "Target Support Files/Pods-App/Pods-App.debug.xcconfig"; sourceTree = "<group>"; };
|
|
29
|
+
5709B34CF0A7D63546082F79 /* Pods-App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.release.xcconfig"; path = "Target Support Files/Pods-App/Pods-App.release.xcconfig"; sourceTree = "<group>"; };
|
|
30
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-App.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-App.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
31
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = App/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
32
|
+
E0C083A781074E78FBE614FA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = App/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
51
33
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
52
34
|
/* End PBXFileReference section */
|
|
53
35
|
|
|
54
36
|
/* 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
37
|
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
64
38
|
isa = PBXFrameworksBuildPhase;
|
|
65
39
|
buildActionMask = 2147483647;
|
|
66
40
|
files = (
|
|
67
|
-
0C80B921A6F3F58F76C31292 /* libPods-
|
|
41
|
+
0C80B921A6F3F58F76C31292 /* libPods-App.a in Frameworks */,
|
|
68
42
|
);
|
|
69
43
|
runOnlyForDeploymentPostprocessing = 0;
|
|
70
44
|
};
|
|
71
45
|
/* End PBXFrameworksBuildPhase section */
|
|
72
46
|
|
|
73
47
|
/* Begin PBXGroup section */
|
|
74
|
-
|
|
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 */ = {
|
|
48
|
+
13B07FAE1A68108700A75B9A /* App */ = {
|
|
92
49
|
isa = PBXGroup;
|
|
93
50
|
children = (
|
|
94
51
|
34BE021D2B88CF0100304333 /* license */,
|
|
@@ -101,15 +58,14 @@
|
|
|
101
58
|
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
102
59
|
E0C083A781074E78FBE614FA /* PrivacyInfo.xcprivacy */,
|
|
103
60
|
);
|
|
104
|
-
name =
|
|
61
|
+
name = App;
|
|
105
62
|
sourceTree = "<group>";
|
|
106
63
|
};
|
|
107
64
|
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
108
65
|
isa = PBXGroup;
|
|
109
66
|
children = (
|
|
110
67
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
111
|
-
5DCACB8F33CDC322A6C60F78 /* libPods-
|
|
112
|
-
19F6CBCC0A4E27FBF8BF4A61 /* libPods-FaceSDK-FaceSDKTests.a */,
|
|
68
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-App.a */,
|
|
113
69
|
);
|
|
114
70
|
name = Frameworks;
|
|
115
71
|
sourceTree = "<group>";
|
|
@@ -124,9 +80,8 @@
|
|
|
124
80
|
83CBB9F61A601CBA00E9B192 = {
|
|
125
81
|
isa = PBXGroup;
|
|
126
82
|
children = (
|
|
127
|
-
13B07FAE1A68108700A75B9A /*
|
|
83
|
+
13B07FAE1A68108700A75B9A /* App */,
|
|
128
84
|
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
129
|
-
00E356EF1AD99517003FC87E /* FaceSDKTests */,
|
|
130
85
|
83CBBA001A601CBA00E9B192 /* Products */,
|
|
131
86
|
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
132
87
|
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
@@ -139,8 +94,7 @@
|
|
|
139
94
|
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
140
95
|
isa = PBXGroup;
|
|
141
96
|
children = (
|
|
142
|
-
13B07F961A680F5B00A75B9A /*
|
|
143
|
-
00E356EE1AD99517003FC87E /* FaceSDKTests.xctest */,
|
|
97
|
+
13B07F961A680F5B00A75B9A /* App.app */,
|
|
144
98
|
);
|
|
145
99
|
name = Products;
|
|
146
100
|
sourceTree = "<group>";
|
|
@@ -148,10 +102,8 @@
|
|
|
148
102
|
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
149
103
|
isa = PBXGroup;
|
|
150
104
|
children = (
|
|
151
|
-
3B4392A12AC88292D35C810B /* Pods-
|
|
152
|
-
5709B34CF0A7D63546082F79 /* Pods-
|
|
153
|
-
5B7EB9410499542E8C5724F5 /* Pods-FaceSDK-FaceSDKTests.debug.xcconfig */,
|
|
154
|
-
89C6BE57DB24E9ADA2F236DE /* Pods-FaceSDK-FaceSDKTests.release.xcconfig */,
|
|
105
|
+
3B4392A12AC88292D35C810B /* Pods-App.debug.xcconfig */,
|
|
106
|
+
5709B34CF0A7D63546082F79 /* Pods-App.release.xcconfig */,
|
|
155
107
|
);
|
|
156
108
|
path = Pods;
|
|
157
109
|
sourceTree = "<group>";
|
|
@@ -159,30 +111,9 @@
|
|
|
159
111
|
/* End PBXGroup section */
|
|
160
112
|
|
|
161
113
|
/* Begin PBXNativeTarget section */
|
|
162
|
-
|
|
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 */ = {
|
|
114
|
+
13B07F861A680F5B00A75B9A /* App */ = {
|
|
184
115
|
isa = PBXNativeTarget;
|
|
185
|
-
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "
|
|
116
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "App" */;
|
|
186
117
|
buildPhases = (
|
|
187
118
|
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
|
188
119
|
13B07F871A680F5B00A75B9A /* Sources */,
|
|
@@ -196,9 +127,9 @@
|
|
|
196
127
|
);
|
|
197
128
|
dependencies = (
|
|
198
129
|
);
|
|
199
|
-
name =
|
|
200
|
-
productName =
|
|
201
|
-
productReference = 13B07F961A680F5B00A75B9A /*
|
|
130
|
+
name = App;
|
|
131
|
+
productName = App;
|
|
132
|
+
productReference = 13B07F961A680F5B00A75B9A /* App.app */;
|
|
202
133
|
productType = "com.apple.product-type.application";
|
|
203
134
|
};
|
|
204
135
|
/* End PBXNativeTarget section */
|
|
@@ -209,16 +140,12 @@
|
|
|
209
140
|
attributes = {
|
|
210
141
|
LastUpgradeCheck = 1210;
|
|
211
142
|
TargetAttributes = {
|
|
212
|
-
00E356ED1AD99517003FC87E = {
|
|
213
|
-
CreatedOnToolsVersion = 6.2;
|
|
214
|
-
TestTargetID = 13B07F861A680F5B00A75B9A;
|
|
215
|
-
};
|
|
216
143
|
13B07F861A680F5B00A75B9A = {
|
|
217
144
|
LastSwiftMigration = 1120;
|
|
218
145
|
};
|
|
219
146
|
};
|
|
220
147
|
};
|
|
221
|
-
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "
|
|
148
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "App" */;
|
|
222
149
|
compatibilityVersion = "Xcode 12.0";
|
|
223
150
|
developmentRegion = en;
|
|
224
151
|
hasScannedForEncodings = 0;
|
|
@@ -231,20 +158,12 @@
|
|
|
231
158
|
projectDirPath = "";
|
|
232
159
|
projectRoot = "";
|
|
233
160
|
targets = (
|
|
234
|
-
13B07F861A680F5B00A75B9A /*
|
|
235
|
-
00E356ED1AD99517003FC87E /* FaceSDKTests */,
|
|
161
|
+
13B07F861A680F5B00A75B9A /* App */,
|
|
236
162
|
);
|
|
237
163
|
};
|
|
238
164
|
/* End PBXProject section */
|
|
239
165
|
|
|
240
166
|
/* Begin PBXResourcesBuildPhase section */
|
|
241
|
-
00E356EC1AD99517003FC87E /* Resources */ = {
|
|
242
|
-
isa = PBXResourcesBuildPhase;
|
|
243
|
-
buildActionMask = 2147483647;
|
|
244
|
-
files = (
|
|
245
|
-
);
|
|
246
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
247
|
-
};
|
|
248
167
|
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
249
168
|
isa = PBXResourcesBuildPhase;
|
|
250
169
|
buildActionMask = 2147483647;
|
|
@@ -273,7 +192,7 @@
|
|
|
273
192
|
);
|
|
274
193
|
runOnlyForDeploymentPostprocessing = 0;
|
|
275
194
|
shellPath = /bin/sh;
|
|
276
|
-
shellScript = "set -e\
|
|
195
|
+
shellScript = "set -e\nexport ENTRY_FILE=\"index.tsx\"\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
196
|
};
|
|
278
197
|
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
|
279
198
|
isa = PBXShellScriptBuildPhase;
|
|
@@ -281,37 +200,15 @@
|
|
|
281
200
|
files = (
|
|
282
201
|
);
|
|
283
202
|
inputFileListPaths = (
|
|
284
|
-
"${PODS_ROOT}/Target Support Files/Pods-
|
|
203
|
+
"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
285
204
|
);
|
|
286
205
|
name = "[CP] Embed Pods Frameworks";
|
|
287
206
|
outputFileListPaths = (
|
|
288
|
-
"${PODS_ROOT}/Target Support Files/Pods-
|
|
207
|
+
"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
289
208
|
);
|
|
290
209
|
runOnlyForDeploymentPostprocessing = 0;
|
|
291
210
|
shellPath = /bin/sh;
|
|
292
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-
|
|
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";
|
|
211
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks.sh\"\n";
|
|
315
212
|
showEnvVarsInLog = 0;
|
|
316
213
|
};
|
|
317
214
|
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
@@ -329,75 +226,33 @@
|
|
|
329
226
|
outputFileListPaths = (
|
|
330
227
|
);
|
|
331
228
|
outputPaths = (
|
|
332
|
-
"$(DERIVED_FILE_DIR)/Pods-
|
|
229
|
+
"$(DERIVED_FILE_DIR)/Pods-App-checkManifestLockResult.txt",
|
|
333
230
|
);
|
|
334
231
|
runOnlyForDeploymentPostprocessing = 0;
|
|
335
232
|
shellPath = /bin/sh;
|
|
336
233
|
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
234
|
showEnvVarsInLog = 0;
|
|
338
235
|
};
|
|
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
236
|
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
357
237
|
isa = PBXShellScriptBuildPhase;
|
|
358
238
|
buildActionMask = 2147483647;
|
|
359
239
|
files = (
|
|
360
240
|
);
|
|
361
241
|
inputFileListPaths = (
|
|
362
|
-
"${PODS_ROOT}/Target Support Files/Pods-
|
|
242
|
+
"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
363
243
|
);
|
|
364
244
|
name = "[CP] Copy Pods Resources";
|
|
365
245
|
outputFileListPaths = (
|
|
366
|
-
"${PODS_ROOT}/Target Support Files/Pods-
|
|
246
|
+
"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
367
247
|
);
|
|
368
248
|
runOnlyForDeploymentPostprocessing = 0;
|
|
369
249
|
shellPath = /bin/sh;
|
|
370
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-
|
|
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";
|
|
250
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-resources.sh\"\n";
|
|
388
251
|
showEnvVarsInLog = 0;
|
|
389
252
|
};
|
|
390
253
|
/* End PBXShellScriptBuildPhase section */
|
|
391
254
|
|
|
392
255
|
/* 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
256
|
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
402
257
|
isa = PBXSourcesBuildPhase;
|
|
403
258
|
buildActionMask = 2147483647;
|
|
@@ -409,76 +264,18 @@
|
|
|
409
264
|
};
|
|
410
265
|
/* End PBXSourcesBuildPhase section */
|
|
411
266
|
|
|
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
267
|
/* 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
268
|
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
473
269
|
isa = XCBuildConfiguration;
|
|
474
|
-
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-
|
|
270
|
+
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-App.debug.xcconfig */;
|
|
475
271
|
buildSettings = {
|
|
476
272
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
477
273
|
CLANG_ENABLE_MODULES = YES;
|
|
478
274
|
CURRENT_PROJECT_VERSION = 1;
|
|
479
275
|
DEVELOPMENT_TEAM = H6WR54S268;
|
|
480
276
|
ENABLE_BITCODE = NO;
|
|
481
|
-
INFOPLIST_FILE =
|
|
277
|
+
INFOPLIST_FILE = App/Info.plist;
|
|
278
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
482
279
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
483
280
|
"$(inherited)",
|
|
484
281
|
"@executable_path/Frameworks",
|
|
@@ -489,8 +286,8 @@
|
|
|
489
286
|
"-ObjC",
|
|
490
287
|
"-lc++",
|
|
491
288
|
);
|
|
492
|
-
PRODUCT_BUNDLE_IDENTIFIER = regula.
|
|
493
|
-
PRODUCT_NAME =
|
|
289
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.documentreader.qa;
|
|
290
|
+
PRODUCT_NAME = App;
|
|
494
291
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
495
292
|
SWIFT_VERSION = 5.0;
|
|
496
293
|
VERSIONING_SYSTEM = "apple-generic";
|
|
@@ -499,13 +296,14 @@
|
|
|
499
296
|
};
|
|
500
297
|
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
501
298
|
isa = XCBuildConfiguration;
|
|
502
|
-
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-
|
|
299
|
+
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-App.release.xcconfig */;
|
|
503
300
|
buildSettings = {
|
|
504
301
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
505
302
|
CLANG_ENABLE_MODULES = YES;
|
|
506
303
|
CURRENT_PROJECT_VERSION = 1;
|
|
507
304
|
DEVELOPMENT_TEAM = H6WR54S268;
|
|
508
|
-
INFOPLIST_FILE =
|
|
305
|
+
INFOPLIST_FILE = App/Info.plist;
|
|
306
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
509
307
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
510
308
|
"$(inherited)",
|
|
511
309
|
"@executable_path/Frameworks",
|
|
@@ -516,8 +314,8 @@
|
|
|
516
314
|
"-ObjC",
|
|
517
315
|
"-lc++",
|
|
518
316
|
);
|
|
519
|
-
PRODUCT_BUNDLE_IDENTIFIER = regula.
|
|
520
|
-
PRODUCT_NAME =
|
|
317
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.regula.documentreader.qa;
|
|
318
|
+
PRODUCT_NAME = App;
|
|
521
319
|
SWIFT_VERSION = 5.0;
|
|
522
320
|
VERSIONING_SYSTEM = "apple-generic";
|
|
523
321
|
};
|
|
@@ -574,7 +372,7 @@
|
|
|
574
372
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
575
373
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
576
374
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
577
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
375
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
578
376
|
LD = "";
|
|
579
377
|
LDPLUSPLUS = "";
|
|
580
378
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
@@ -596,10 +394,7 @@
|
|
|
596
394
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
597
395
|
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
598
396
|
);
|
|
599
|
-
OTHER_LDFLAGS = (
|
|
600
|
-
"$(inherited)",
|
|
601
|
-
" ",
|
|
602
|
-
);
|
|
397
|
+
OTHER_LDFLAGS = "$(inherited) ";
|
|
603
398
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
604
399
|
SDKROOT = iphoneos;
|
|
605
400
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
@@ -651,7 +446,7 @@
|
|
|
651
446
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
652
447
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
653
448
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
654
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
449
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
655
450
|
LD = "";
|
|
656
451
|
LDPLUSPLUS = "";
|
|
657
452
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
@@ -672,10 +467,7 @@
|
|
|
672
467
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
673
468
|
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
674
469
|
);
|
|
675
|
-
OTHER_LDFLAGS = (
|
|
676
|
-
"$(inherited)",
|
|
677
|
-
" ",
|
|
678
|
-
);
|
|
470
|
+
OTHER_LDFLAGS = "$(inherited) ";
|
|
679
471
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
680
472
|
SDKROOT = iphoneos;
|
|
681
473
|
USE_HERMES = true;
|
|
@@ -686,16 +478,7 @@
|
|
|
686
478
|
/* End XCBuildConfiguration section */
|
|
687
479
|
|
|
688
480
|
/* Begin XCConfigurationList section */
|
|
689
|
-
|
|
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" */ = {
|
|
481
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "App" */ = {
|
|
699
482
|
isa = XCConfigurationList;
|
|
700
483
|
buildConfigurations = (
|
|
701
484
|
13B07F941A680F5B00A75B9A /* Debug */,
|
|
@@ -704,7 +487,7 @@
|
|
|
704
487
|
defaultConfigurationIsVisible = 0;
|
|
705
488
|
defaultConfigurationName = Release;
|
|
706
489
|
};
|
|
707
|
-
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "
|
|
490
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "App" */ = {
|
|
708
491
|
isa = XCConfigurationList;
|
|
709
492
|
buildConfigurations = (
|
|
710
493
|
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
@@ -15,31 +15,13 @@
|
|
|
15
15
|
<BuildableReference
|
|
16
16
|
BuildableIdentifier = "primary"
|
|
17
17
|
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
18
|
-
BuildableName = "
|
|
19
|
-
BlueprintName = "
|
|
20
|
-
ReferencedContainer = "container:
|
|
18
|
+
BuildableName = "App.app"
|
|
19
|
+
BlueprintName = "App"
|
|
20
|
+
ReferencedContainer = "container:App.xcodeproj">
|
|
21
21
|
</BuildableReference>
|
|
22
22
|
</BuildActionEntry>
|
|
23
23
|
</BuildActionEntries>
|
|
24
24
|
</BuildAction>
|
|
25
|
-
<TestAction
|
|
26
|
-
buildConfiguration = "Debug"
|
|
27
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
-
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
-
<Testables>
|
|
31
|
-
<TestableReference
|
|
32
|
-
skipped = "NO">
|
|
33
|
-
<BuildableReference
|
|
34
|
-
BuildableIdentifier = "primary"
|
|
35
|
-
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
|
|
36
|
-
BuildableName = "FaceSDKTests.xctest"
|
|
37
|
-
BlueprintName = "FaceSDKTests"
|
|
38
|
-
ReferencedContainer = "container:FaceSDK.xcodeproj">
|
|
39
|
-
</BuildableReference>
|
|
40
|
-
</TestableReference>
|
|
41
|
-
</Testables>
|
|
42
|
-
</TestAction>
|
|
43
25
|
<LaunchAction
|
|
44
26
|
buildConfiguration = "Debug"
|
|
45
27
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
@@ -55,9 +37,9 @@
|
|
|
55
37
|
<BuildableReference
|
|
56
38
|
BuildableIdentifier = "primary"
|
|
57
39
|
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
58
|
-
BuildableName = "
|
|
59
|
-
BlueprintName = "
|
|
60
|
-
ReferencedContainer = "container:
|
|
40
|
+
BuildableName = "App.app"
|
|
41
|
+
BlueprintName = "App"
|
|
42
|
+
ReferencedContainer = "container:App.xcodeproj">
|
|
61
43
|
</BuildableReference>
|
|
62
44
|
</BuildableProductRunnable>
|
|
63
45
|
</LaunchAction>
|
|
@@ -72,9 +54,9 @@
|
|
|
72
54
|
<BuildableReference
|
|
73
55
|
BuildableIdentifier = "primary"
|
|
74
56
|
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
75
|
-
BuildableName = "
|
|
76
|
-
BlueprintName = "
|
|
77
|
-
ReferencedContainer = "container:
|
|
57
|
+
BuildableName = "App.app"
|
|
58
|
+
BlueprintName = "App"
|
|
59
|
+
ReferencedContainer = "container:App.xcodeproj">
|
|
78
60
|
</BuildableReference>
|
|
79
61
|
</BuildableProductRunnable>
|
|
80
62
|
</ProfileAction>
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
source "https://github.com/CocoaPods/Specs.git"
|
|
2
|
+
|
|
1
3
|
# Resolve react_native_pods.rb with node to allow for hoisting
|
|
2
4
|
require Pod::Executable.execute_command('node', ['-p',
|
|
3
5
|
'require.resolve(
|
|
@@ -14,7 +16,7 @@ if linkage != nil
|
|
|
14
16
|
use_frameworks! :linkage => linkage.to_sym
|
|
15
17
|
end
|
|
16
18
|
|
|
17
|
-
target '
|
|
19
|
+
target 'App' do
|
|
18
20
|
config = use_native_modules!
|
|
19
21
|
|
|
20
22
|
use_react_native!(
|
|
@@ -23,11 +25,6 @@ target 'FaceSDK' do
|
|
|
23
25
|
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
|
24
26
|
)
|
|
25
27
|
|
|
26
|
-
target 'FaceSDKTests' do
|
|
27
|
-
inherit! :complete
|
|
28
|
-
# Pods for testing
|
|
29
|
-
end
|
|
30
|
-
|
|
31
28
|
post_install do |installer|
|
|
32
29
|
# https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
|
|
33
30
|
react_native_post_install(
|