@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,410 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 48;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
2FAD9763203C412B000D30F8 /* config.xml in Resources */ = {isa = PBXBuildFile; fileRef = 2FAD9762203C412B000D30F8 /* config.xml */; };
|
|
11
|
+
50379B232058CBB4000EE86E /* capacitor.config.json in Resources */ = {isa = PBXBuildFile; fileRef = 50379B222058CBB4000EE86E /* capacitor.config.json */; };
|
|
12
|
+
504EC3081FED79650016851F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 504EC3071FED79650016851F /* AppDelegate.swift */; };
|
|
13
|
+
504EC30D1FED79650016851F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30B1FED79650016851F /* Main.storyboard */; };
|
|
14
|
+
504EC30F1FED79650016851F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30E1FED79650016851F /* Assets.xcassets */; };
|
|
15
|
+
504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC3101FED79650016851F /* LaunchScreen.storyboard */; };
|
|
16
|
+
50B271D11FEDC1A000F3C39B /* public in Resources */ = {isa = PBXBuildFile; fileRef = 50B271D01FEDC1A000F3C39B /* public */; };
|
|
17
|
+
A084ECDBA7D38E1E42DFC39D /* Pods_App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */; };
|
|
18
|
+
/* End PBXBuildFile section */
|
|
19
|
+
|
|
20
|
+
/* Begin PBXFileReference section */
|
|
21
|
+
2FAD9762203C412B000D30F8 /* config.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = config.xml; sourceTree = "<group>"; };
|
|
22
|
+
34ADEF8A2B6C25C900B38C44 /* App.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = App.entitlements; sourceTree = "<group>"; };
|
|
23
|
+
50379B222058CBB4000EE86E /* capacitor.config.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = capacitor.config.json; sourceTree = "<group>"; };
|
|
24
|
+
504EC3041FED79650016851F /* App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = App.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
25
|
+
504EC3071FED79650016851F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
26
|
+
504EC30C1FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
27
|
+
504EC30E1FED79650016851F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
28
|
+
504EC3111FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
29
|
+
504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
30
|
+
50B271D01FEDC1A000F3C39B /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = "<group>"; };
|
|
31
|
+
AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
32
|
+
AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.release.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.release.xcconfig"; sourceTree = "<group>"; };
|
|
33
|
+
FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.debug.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.debug.xcconfig"; sourceTree = "<group>"; };
|
|
34
|
+
/* End PBXFileReference section */
|
|
35
|
+
|
|
36
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
37
|
+
504EC3011FED79650016851F /* Frameworks */ = {
|
|
38
|
+
isa = PBXFrameworksBuildPhase;
|
|
39
|
+
buildActionMask = 2147483647;
|
|
40
|
+
files = (
|
|
41
|
+
A084ECDBA7D38E1E42DFC39D /* Pods_App.framework in Frameworks */,
|
|
42
|
+
);
|
|
43
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
44
|
+
};
|
|
45
|
+
/* End PBXFrameworksBuildPhase section */
|
|
46
|
+
|
|
47
|
+
/* Begin PBXGroup section */
|
|
48
|
+
27E2DDA53C4D2A4D1A88CE4A /* Frameworks */ = {
|
|
49
|
+
isa = PBXGroup;
|
|
50
|
+
children = (
|
|
51
|
+
AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */,
|
|
52
|
+
);
|
|
53
|
+
name = Frameworks;
|
|
54
|
+
sourceTree = "<group>";
|
|
55
|
+
};
|
|
56
|
+
504EC2FB1FED79650016851F = {
|
|
57
|
+
isa = PBXGroup;
|
|
58
|
+
children = (
|
|
59
|
+
504EC3061FED79650016851F /* App */,
|
|
60
|
+
504EC3051FED79650016851F /* Products */,
|
|
61
|
+
7F8756D8B27F46E3366F6CEA /* Pods */,
|
|
62
|
+
27E2DDA53C4D2A4D1A88CE4A /* Frameworks */,
|
|
63
|
+
);
|
|
64
|
+
sourceTree = "<group>";
|
|
65
|
+
};
|
|
66
|
+
504EC3051FED79650016851F /* Products */ = {
|
|
67
|
+
isa = PBXGroup;
|
|
68
|
+
children = (
|
|
69
|
+
504EC3041FED79650016851F /* App.app */,
|
|
70
|
+
);
|
|
71
|
+
name = Products;
|
|
72
|
+
sourceTree = "<group>";
|
|
73
|
+
};
|
|
74
|
+
504EC3061FED79650016851F /* App */ = {
|
|
75
|
+
isa = PBXGroup;
|
|
76
|
+
children = (
|
|
77
|
+
34ADEF8A2B6C25C900B38C44 /* App.entitlements */,
|
|
78
|
+
50379B222058CBB4000EE86E /* capacitor.config.json */,
|
|
79
|
+
504EC3071FED79650016851F /* AppDelegate.swift */,
|
|
80
|
+
504EC30B1FED79650016851F /* Main.storyboard */,
|
|
81
|
+
504EC30E1FED79650016851F /* Assets.xcassets */,
|
|
82
|
+
504EC3101FED79650016851F /* LaunchScreen.storyboard */,
|
|
83
|
+
504EC3131FED79650016851F /* Info.plist */,
|
|
84
|
+
2FAD9762203C412B000D30F8 /* config.xml */,
|
|
85
|
+
50B271D01FEDC1A000F3C39B /* public */,
|
|
86
|
+
);
|
|
87
|
+
path = App;
|
|
88
|
+
sourceTree = "<group>";
|
|
89
|
+
};
|
|
90
|
+
7F8756D8B27F46E3366F6CEA /* Pods */ = {
|
|
91
|
+
isa = PBXGroup;
|
|
92
|
+
children = (
|
|
93
|
+
FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */,
|
|
94
|
+
AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */,
|
|
95
|
+
);
|
|
96
|
+
name = Pods;
|
|
97
|
+
sourceTree = "<group>";
|
|
98
|
+
};
|
|
99
|
+
/* End PBXGroup section */
|
|
100
|
+
|
|
101
|
+
/* Begin PBXNativeTarget section */
|
|
102
|
+
504EC3031FED79650016851F /* App */ = {
|
|
103
|
+
isa = PBXNativeTarget;
|
|
104
|
+
buildConfigurationList = 504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */;
|
|
105
|
+
buildPhases = (
|
|
106
|
+
6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */,
|
|
107
|
+
504EC3001FED79650016851F /* Sources */,
|
|
108
|
+
504EC3011FED79650016851F /* Frameworks */,
|
|
109
|
+
504EC3021FED79650016851F /* Resources */,
|
|
110
|
+
9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */,
|
|
111
|
+
);
|
|
112
|
+
buildRules = (
|
|
113
|
+
);
|
|
114
|
+
dependencies = (
|
|
115
|
+
);
|
|
116
|
+
name = App;
|
|
117
|
+
productName = App;
|
|
118
|
+
productReference = 504EC3041FED79650016851F /* App.app */;
|
|
119
|
+
productType = "com.apple.product-type.application";
|
|
120
|
+
};
|
|
121
|
+
/* End PBXNativeTarget section */
|
|
122
|
+
|
|
123
|
+
/* Begin PBXProject section */
|
|
124
|
+
504EC2FC1FED79650016851F /* Project object */ = {
|
|
125
|
+
isa = PBXProject;
|
|
126
|
+
attributes = {
|
|
127
|
+
LastSwiftUpdateCheck = 0920;
|
|
128
|
+
LastUpgradeCheck = 0920;
|
|
129
|
+
TargetAttributes = {
|
|
130
|
+
504EC3031FED79650016851F = {
|
|
131
|
+
CreatedOnToolsVersion = 9.2;
|
|
132
|
+
LastSwiftMigration = 1100;
|
|
133
|
+
ProvisioningStyle = Automatic;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
buildConfigurationList = 504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */;
|
|
138
|
+
compatibilityVersion = "Xcode 8.0";
|
|
139
|
+
developmentRegion = en;
|
|
140
|
+
hasScannedForEncodings = 0;
|
|
141
|
+
knownRegions = (
|
|
142
|
+
en,
|
|
143
|
+
Base,
|
|
144
|
+
);
|
|
145
|
+
mainGroup = 504EC2FB1FED79650016851F;
|
|
146
|
+
productRefGroup = 504EC3051FED79650016851F /* Products */;
|
|
147
|
+
projectDirPath = "";
|
|
148
|
+
projectRoot = "";
|
|
149
|
+
targets = (
|
|
150
|
+
504EC3031FED79650016851F /* App */,
|
|
151
|
+
);
|
|
152
|
+
};
|
|
153
|
+
/* End PBXProject section */
|
|
154
|
+
|
|
155
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
156
|
+
504EC3021FED79650016851F /* Resources */ = {
|
|
157
|
+
isa = PBXResourcesBuildPhase;
|
|
158
|
+
buildActionMask = 2147483647;
|
|
159
|
+
files = (
|
|
160
|
+
504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */,
|
|
161
|
+
50B271D11FEDC1A000F3C39B /* public in Resources */,
|
|
162
|
+
504EC30F1FED79650016851F /* Assets.xcassets in Resources */,
|
|
163
|
+
50379B232058CBB4000EE86E /* capacitor.config.json in Resources */,
|
|
164
|
+
504EC30D1FED79650016851F /* Main.storyboard in Resources */,
|
|
165
|
+
2FAD9763203C412B000D30F8 /* config.xml in Resources */,
|
|
166
|
+
);
|
|
167
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
168
|
+
};
|
|
169
|
+
/* End PBXResourcesBuildPhase section */
|
|
170
|
+
|
|
171
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
172
|
+
6634F4EFEBD30273BCE97C65 /* [CP] Check Pods Manifest.lock */ = {
|
|
173
|
+
isa = PBXShellScriptBuildPhase;
|
|
174
|
+
buildActionMask = 2147483647;
|
|
175
|
+
files = (
|
|
176
|
+
);
|
|
177
|
+
inputPaths = (
|
|
178
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
179
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
180
|
+
);
|
|
181
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
182
|
+
outputPaths = (
|
|
183
|
+
"$(DERIVED_FILE_DIR)/Pods-App-checkManifestLockResult.txt",
|
|
184
|
+
);
|
|
185
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
186
|
+
shellPath = /bin/sh;
|
|
187
|
+
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";
|
|
188
|
+
showEnvVarsInLog = 0;
|
|
189
|
+
};
|
|
190
|
+
9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */ = {
|
|
191
|
+
isa = PBXShellScriptBuildPhase;
|
|
192
|
+
buildActionMask = 2147483647;
|
|
193
|
+
files = (
|
|
194
|
+
);
|
|
195
|
+
inputPaths = (
|
|
196
|
+
);
|
|
197
|
+
name = "[CP] Embed Pods Frameworks";
|
|
198
|
+
outputPaths = (
|
|
199
|
+
);
|
|
200
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
201
|
+
shellPath = /bin/sh;
|
|
202
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-frameworks.sh\"\n";
|
|
203
|
+
showEnvVarsInLog = 0;
|
|
204
|
+
};
|
|
205
|
+
/* End PBXShellScriptBuildPhase section */
|
|
206
|
+
|
|
207
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
208
|
+
504EC3001FED79650016851F /* Sources */ = {
|
|
209
|
+
isa = PBXSourcesBuildPhase;
|
|
210
|
+
buildActionMask = 2147483647;
|
|
211
|
+
files = (
|
|
212
|
+
504EC3081FED79650016851F /* AppDelegate.swift in Sources */,
|
|
213
|
+
);
|
|
214
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
215
|
+
};
|
|
216
|
+
/* End PBXSourcesBuildPhase section */
|
|
217
|
+
|
|
218
|
+
/* Begin PBXVariantGroup section */
|
|
219
|
+
504EC30B1FED79650016851F /* Main.storyboard */ = {
|
|
220
|
+
isa = PBXVariantGroup;
|
|
221
|
+
children = (
|
|
222
|
+
504EC30C1FED79650016851F /* Base */,
|
|
223
|
+
);
|
|
224
|
+
name = Main.storyboard;
|
|
225
|
+
sourceTree = "<group>";
|
|
226
|
+
};
|
|
227
|
+
504EC3101FED79650016851F /* LaunchScreen.storyboard */ = {
|
|
228
|
+
isa = PBXVariantGroup;
|
|
229
|
+
children = (
|
|
230
|
+
504EC3111FED79650016851F /* Base */,
|
|
231
|
+
);
|
|
232
|
+
name = LaunchScreen.storyboard;
|
|
233
|
+
sourceTree = "<group>";
|
|
234
|
+
};
|
|
235
|
+
/* End PBXVariantGroup section */
|
|
236
|
+
|
|
237
|
+
/* Begin XCBuildConfiguration section */
|
|
238
|
+
504EC3141FED79650016851F /* Debug */ = {
|
|
239
|
+
isa = XCBuildConfiguration;
|
|
240
|
+
buildSettings = {
|
|
241
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
242
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
243
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
244
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
245
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
246
|
+
CLANG_ENABLE_MODULES = YES;
|
|
247
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
248
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
249
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
250
|
+
CLANG_WARN_COMMA = YES;
|
|
251
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
252
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
253
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
254
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
255
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
256
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
257
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
258
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
259
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
260
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
261
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
262
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
263
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
264
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
265
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
266
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
267
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
268
|
+
COPY_PHASE_STRIP = NO;
|
|
269
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
270
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
271
|
+
ENABLE_TESTABILITY = YES;
|
|
272
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
273
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
274
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
275
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
276
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
277
|
+
"DEBUG=1",
|
|
278
|
+
"$(inherited)",
|
|
279
|
+
);
|
|
280
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
281
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
282
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
283
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
284
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
285
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
286
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
287
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
288
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
289
|
+
SDKROOT = iphoneos;
|
|
290
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
291
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
292
|
+
};
|
|
293
|
+
name = Debug;
|
|
294
|
+
};
|
|
295
|
+
504EC3151FED79650016851F /* Release */ = {
|
|
296
|
+
isa = XCBuildConfiguration;
|
|
297
|
+
buildSettings = {
|
|
298
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
299
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
300
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
301
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
302
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
303
|
+
CLANG_ENABLE_MODULES = YES;
|
|
304
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
305
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
306
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
307
|
+
CLANG_WARN_COMMA = YES;
|
|
308
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
309
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
310
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
311
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
312
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
313
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
314
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
315
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
316
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
317
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
318
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
319
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
320
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
321
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
322
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
323
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
324
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
325
|
+
COPY_PHASE_STRIP = NO;
|
|
326
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
327
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
328
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
329
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
330
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
331
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
332
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
333
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
334
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
335
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
336
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
337
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
338
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
339
|
+
SDKROOT = iphoneos;
|
|
340
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
|
341
|
+
VALIDATE_PRODUCT = YES;
|
|
342
|
+
};
|
|
343
|
+
name = Release;
|
|
344
|
+
};
|
|
345
|
+
504EC3171FED79650016851F /* Debug */ = {
|
|
346
|
+
isa = XCBuildConfiguration;
|
|
347
|
+
baseConfigurationReference = FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */;
|
|
348
|
+
buildSettings = {
|
|
349
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
350
|
+
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
|
|
351
|
+
CODE_SIGN_STYLE = Automatic;
|
|
352
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
353
|
+
INFOPLIST_FILE = App/Info.plist;
|
|
354
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
355
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
356
|
+
MARKETING_VERSION = 1.0;
|
|
357
|
+
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
|
|
358
|
+
PRODUCT_BUNDLE_IDENTIFIER = regula.FaceSDKSample;
|
|
359
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
360
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
361
|
+
SWIFT_VERSION = 5.0;
|
|
362
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
363
|
+
};
|
|
364
|
+
name = Debug;
|
|
365
|
+
};
|
|
366
|
+
504EC3181FED79650016851F /* Release */ = {
|
|
367
|
+
isa = XCBuildConfiguration;
|
|
368
|
+
baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */;
|
|
369
|
+
buildSettings = {
|
|
370
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
371
|
+
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
|
|
372
|
+
CODE_SIGN_STYLE = Automatic;
|
|
373
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
374
|
+
INFOPLIST_FILE = App/Info.plist;
|
|
375
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
376
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
377
|
+
MARKETING_VERSION = 1.0;
|
|
378
|
+
PRODUCT_BUNDLE_IDENTIFIER = regula.FaceSDKSample;
|
|
379
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
380
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
|
|
381
|
+
SWIFT_VERSION = 5.0;
|
|
382
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
383
|
+
};
|
|
384
|
+
name = Release;
|
|
385
|
+
};
|
|
386
|
+
/* End XCBuildConfiguration section */
|
|
387
|
+
|
|
388
|
+
/* Begin XCConfigurationList section */
|
|
389
|
+
504EC2FF1FED79650016851F /* Build configuration list for PBXProject "App" */ = {
|
|
390
|
+
isa = XCConfigurationList;
|
|
391
|
+
buildConfigurations = (
|
|
392
|
+
504EC3141FED79650016851F /* Debug */,
|
|
393
|
+
504EC3151FED79650016851F /* Release */,
|
|
394
|
+
);
|
|
395
|
+
defaultConfigurationIsVisible = 0;
|
|
396
|
+
defaultConfigurationName = Release;
|
|
397
|
+
};
|
|
398
|
+
504EC3161FED79650016851F /* Build configuration list for PBXNativeTarget "App" */ = {
|
|
399
|
+
isa = XCConfigurationList;
|
|
400
|
+
buildConfigurations = (
|
|
401
|
+
504EC3171FED79650016851F /* Debug */,
|
|
402
|
+
504EC3181FED79650016851F /* Release */,
|
|
403
|
+
);
|
|
404
|
+
defaultConfigurationIsVisible = 0;
|
|
405
|
+
defaultConfigurationName = Release;
|
|
406
|
+
};
|
|
407
|
+
/* End XCConfigurationList section */
|
|
408
|
+
};
|
|
409
|
+
rootObject = 504EC2FC1FED79650016851F /* Project object */;
|
|
410
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
|
|
2
|
+
|
|
3
|
+
platform :ios, '13.0'
|
|
4
|
+
use_frameworks!
|
|
5
|
+
|
|
6
|
+
# workaround to avoid Xcode caching of Pods that requires
|
|
7
|
+
# Product -> Clean Build Folder after new Cordova plugins installed
|
|
8
|
+
# Requires CocoaPods 1.6 or newer
|
|
9
|
+
install! 'cocoapods', :disable_input_output_paths => true
|
|
10
|
+
|
|
11
|
+
def capacitor_pods
|
|
12
|
+
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
|
|
13
|
+
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
|
|
14
|
+
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
|
|
15
|
+
pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
|
|
16
|
+
pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
|
|
17
|
+
pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
target 'App' do
|
|
21
|
+
capacitor_pods
|
|
22
|
+
# Add your Pods here
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
post_install do |installer|
|
|
26
|
+
assertDeploymentTarget(installer)
|
|
27
|
+
end
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "face-sdk",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"setup": "npm install",
|
|
8
|
+
"android": "ionic cap run android --open",
|
|
9
|
+
"ios": "ionic cap run ios --open",
|
|
10
|
+
"dev": "vite",
|
|
11
|
+
"build": "tsc && vite build",
|
|
12
|
+
"preview": "vite preview",
|
|
13
|
+
"test.e2e": "cypress run",
|
|
14
|
+
"test.unit": "vitest",
|
|
15
|
+
"lint": "eslint"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@regulaforensics/face-sdk": "6.3.3-beta",
|
|
19
|
+
"@regulaforensics/cordova-plugin-face-core-basic": "6.2.1",
|
|
20
|
+
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
21
|
+
"@awesome-cordova-plugins/file": "6.6.0",
|
|
22
|
+
"@awesome-cordova-plugins/dialogs": "6.6.0",
|
|
23
|
+
"@capacitor/android": "5.6.0",
|
|
24
|
+
"@capacitor/app": "5.0.7",
|
|
25
|
+
"@capacitor/core": "5.6.0",
|
|
26
|
+
"@capacitor/haptics": "5.0.7",
|
|
27
|
+
"@capacitor/ios": "5.6.0",
|
|
28
|
+
"@capacitor/keyboard": "5.0.8",
|
|
29
|
+
"@capacitor/status-bar": "5.0.7",
|
|
30
|
+
"@ionic/react": "^7.0.0",
|
|
31
|
+
"@ionic/react-router": "^7.0.0",
|
|
32
|
+
"@types/react-router": "^5.1.20",
|
|
33
|
+
"@types/react-router-dom": "^5.3.3",
|
|
34
|
+
"cordova-plugin-camera": "7.0.0",
|
|
35
|
+
"cordova-plugin-file": "8.0.1",
|
|
36
|
+
"cordova-plugin-dialogs": "^2.0.2",
|
|
37
|
+
"jetifier": "2.0.0",
|
|
38
|
+
"ionicons": "^7.0.0",
|
|
39
|
+
"react": "^18.2.0",
|
|
40
|
+
"react-dom": "^18.2.0",
|
|
41
|
+
"react-router": "^5.3.4",
|
|
42
|
+
"react-router-dom": "^5.3.4"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@capacitor/cli": "5.6.0",
|
|
46
|
+
"@testing-library/dom": ">=7.21.4",
|
|
47
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
48
|
+
"@testing-library/react": "^14.0.0",
|
|
49
|
+
"@testing-library/user-event": "^14.4.3",
|
|
50
|
+
"@types/react": "^18.0.27",
|
|
51
|
+
"@types/react-dom": "^18.0.10",
|
|
52
|
+
"@vitejs/plugin-legacy": "^5.0.0",
|
|
53
|
+
"@vitejs/plugin-react": "^4.0.1",
|
|
54
|
+
"cypress": "^13.5.0",
|
|
55
|
+
"eslint": "^8.35.0",
|
|
56
|
+
"eslint-plugin-react": "^7.32.2",
|
|
57
|
+
"jsdom": "^22.1.0",
|
|
58
|
+
"terser": "^5.4.0",
|
|
59
|
+
"typescript": "^5.1.6",
|
|
60
|
+
"vite": "^5.0.0",
|
|
61
|
+
"vitest": "^0.34.6"
|
|
62
|
+
},
|
|
63
|
+
"description": "An Ionic project"
|
|
64
|
+
}
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"short_name": "Ionic App",
|
|
3
|
+
"name": "My Ionic App",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"src": "assets/icon/favicon.png",
|
|
7
|
+
"sizes": "64x64 32x32 24x24 16x16",
|
|
8
|
+
"type": "image/x-icon"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"src": "assets/icon/icon.png",
|
|
12
|
+
"type": "image/png",
|
|
13
|
+
"sizes": "512x512",
|
|
14
|
+
"purpose": "maskable"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"start_url": ".",
|
|
18
|
+
"display": "standalone",
|
|
19
|
+
"theme_color": "#ffffff",
|
|
20
|
+
"background_color": "#ffffff"
|
|
21
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Redirect, Route } from 'react-router-dom';
|
|
2
|
+
import { IonApp, IonRouterOutlet, setupIonicReact } from '@ionic/react';
|
|
3
|
+
import { IonReactRouter } from '@ionic/react-router';
|
|
4
|
+
import Home from './pages/Home';
|
|
5
|
+
|
|
6
|
+
/* Core CSS required for Ionic components to work properly */
|
|
7
|
+
import '@ionic/react/css/core.css';
|
|
8
|
+
|
|
9
|
+
/* Basic CSS for apps built with Ionic */
|
|
10
|
+
import '@ionic/react/css/normalize.css';
|
|
11
|
+
import '@ionic/react/css/structure.css';
|
|
12
|
+
import '@ionic/react/css/typography.css';
|
|
13
|
+
|
|
14
|
+
/* Optional CSS utils that can be commented out */
|
|
15
|
+
import '@ionic/react/css/padding.css';
|
|
16
|
+
import '@ionic/react/css/float-elements.css';
|
|
17
|
+
import '@ionic/react/css/text-alignment.css';
|
|
18
|
+
import '@ionic/react/css/text-transformation.css';
|
|
19
|
+
import '@ionic/react/css/flex-utils.css';
|
|
20
|
+
import '@ionic/react/css/display.css';
|
|
21
|
+
|
|
22
|
+
/* Theme variables */
|
|
23
|
+
import './theme/variables.css';
|
|
24
|
+
|
|
25
|
+
setupIonicReact();
|
|
26
|
+
|
|
27
|
+
const App: React.FC = () => (
|
|
28
|
+
<IonApp>
|
|
29
|
+
<IonReactRouter>
|
|
30
|
+
<IonRouterOutlet>
|
|
31
|
+
<Route exact path="/home">
|
|
32
|
+
<Home />
|
|
33
|
+
</Route>
|
|
34
|
+
<Route exact path="/">
|
|
35
|
+
<Redirect to="/home" />
|
|
36
|
+
</Route>
|
|
37
|
+
</IonRouterOutlet>
|
|
38
|
+
</IonReactRouter>
|
|
39
|
+
</IonApp>
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
export default App;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#container {
|
|
2
|
+
text-align: center;
|
|
3
|
+
position: absolute;
|
|
4
|
+
left: 0;
|
|
5
|
+
right: 0;
|
|
6
|
+
top: 50%;
|
|
7
|
+
transform: translateY(-50%);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
#container strong {
|
|
11
|
+
font-size: 20px;
|
|
12
|
+
line-height: 26px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#container p {
|
|
16
|
+
font-size: 16px;
|
|
17
|
+
line-height: 22px;
|
|
18
|
+
color: #8c8c8c;
|
|
19
|
+
margin: 0;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
#container a {
|
|
23
|
+
text-decoration: none;
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import './ExploreContainer.css';
|
|
2
|
+
|
|
3
|
+
interface ContainerProps { }
|
|
4
|
+
|
|
5
|
+
const ExploreContainer: React.FC<ContainerProps> = () => {
|
|
6
|
+
return (
|
|
7
|
+
<div id="container">
|
|
8
|
+
<strong>Ready to create an app?</strong>
|
|
9
|
+
<p>Start with Ionic <a target="_blank" rel="noopener noreferrer" href="https://ionicframework.com/docs/components">UI Components</a></p>
|
|
10
|
+
</div>
|
|
11
|
+
);
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export default ExploreContainer;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { createRoot } from 'react-dom/client';
|
|
3
|
+
import App from './App';
|
|
4
|
+
|
|
5
|
+
const container = document.getElementById('root');
|
|
6
|
+
const root = createRoot(container!);
|
|
7
|
+
root.render(
|
|
8
|
+
<React.StrictMode>
|
|
9
|
+
<App />
|
|
10
|
+
</React.StrictMode>
|
|
11
|
+
);
|