@regulaforensics/face-sdk 7.1.211-rc → 7.1.253-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 +1313 -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/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/Gemfile.lock +0 -137
- 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
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
// Ionic Variables and Theming. For more info, please see:
|
|
2
|
-
// http://ionicframework.com/docs/theming/
|
|
3
|
-
|
|
4
|
-
/** Ionic CSS Variables **/
|
|
5
|
-
:root {
|
|
6
|
-
/** primary **/
|
|
7
|
-
--ion-color-primary: #3880ff;
|
|
8
|
-
--ion-color-primary-rgb: 56, 128, 255;
|
|
9
|
-
--ion-color-primary-contrast: #ffffff;
|
|
10
|
-
--ion-color-primary-contrast-rgb: 255, 255, 255;
|
|
11
|
-
--ion-color-primary-shade: #3171e0;
|
|
12
|
-
--ion-color-primary-tint: #4c8dff;
|
|
13
|
-
|
|
14
|
-
/** secondary **/
|
|
15
|
-
--ion-color-secondary: #0cd1e8;
|
|
16
|
-
--ion-color-secondary-rgb: 12, 209, 232;
|
|
17
|
-
--ion-color-secondary-contrast: #ffffff;
|
|
18
|
-
--ion-color-secondary-contrast-rgb: 255, 255, 255;
|
|
19
|
-
--ion-color-secondary-shade: #0bb8cc;
|
|
20
|
-
--ion-color-secondary-tint: #24d6ea;
|
|
21
|
-
|
|
22
|
-
/** tertiary **/
|
|
23
|
-
--ion-color-tertiary: #7044ff;
|
|
24
|
-
--ion-color-tertiary-rgb: 112, 68, 255;
|
|
25
|
-
--ion-color-tertiary-contrast: #ffffff;
|
|
26
|
-
--ion-color-tertiary-contrast-rgb: 255, 255, 255;
|
|
27
|
-
--ion-color-tertiary-shade: #633ce0;
|
|
28
|
-
--ion-color-tertiary-tint: #7e57ff;
|
|
29
|
-
|
|
30
|
-
/** success **/
|
|
31
|
-
--ion-color-success: #10dc60;
|
|
32
|
-
--ion-color-success-rgb: 16, 220, 96;
|
|
33
|
-
--ion-color-success-contrast: #ffffff;
|
|
34
|
-
--ion-color-success-contrast-rgb: 255, 255, 255;
|
|
35
|
-
--ion-color-success-shade: #0ec254;
|
|
36
|
-
--ion-color-success-tint: #28e070;
|
|
37
|
-
|
|
38
|
-
/** warning **/
|
|
39
|
-
--ion-color-warning: #ffce00;
|
|
40
|
-
--ion-color-warning-rgb: 255, 206, 0;
|
|
41
|
-
--ion-color-warning-contrast: #ffffff;
|
|
42
|
-
--ion-color-warning-contrast-rgb: 255, 255, 255;
|
|
43
|
-
--ion-color-warning-shade: #e0b500;
|
|
44
|
-
--ion-color-warning-tint: #ffd31a;
|
|
45
|
-
|
|
46
|
-
/** danger **/
|
|
47
|
-
--ion-color-danger: #f04141;
|
|
48
|
-
--ion-color-danger-rgb: 245, 61, 61;
|
|
49
|
-
--ion-color-danger-contrast: #ffffff;
|
|
50
|
-
--ion-color-danger-contrast-rgb: 255, 255, 255;
|
|
51
|
-
--ion-color-danger-shade: #d33939;
|
|
52
|
-
--ion-color-danger-tint: #f25454;
|
|
53
|
-
|
|
54
|
-
/** dark **/
|
|
55
|
-
--ion-color-dark: #222428;
|
|
56
|
-
--ion-color-dark-rgb: 34, 34, 34;
|
|
57
|
-
--ion-color-dark-contrast: #ffffff;
|
|
58
|
-
--ion-color-dark-contrast-rgb: 255, 255, 255;
|
|
59
|
-
--ion-color-dark-shade: #1e2023;
|
|
60
|
-
--ion-color-dark-tint: #383a3e;
|
|
61
|
-
|
|
62
|
-
/** medium **/
|
|
63
|
-
--ion-color-medium: #989aa2;
|
|
64
|
-
--ion-color-medium-rgb: 152, 154, 162;
|
|
65
|
-
--ion-color-medium-contrast: #ffffff;
|
|
66
|
-
--ion-color-medium-contrast-rgb: 255, 255, 255;
|
|
67
|
-
--ion-color-medium-shade: #86888f;
|
|
68
|
-
--ion-color-medium-tint: #a2a4ab;
|
|
69
|
-
|
|
70
|
-
/** light **/
|
|
71
|
-
--ion-color-light: #f4f5f8;
|
|
72
|
-
--ion-color-light-rgb: 244, 244, 244;
|
|
73
|
-
--ion-color-light-contrast: #000000;
|
|
74
|
-
--ion-color-light-contrast-rgb: 0, 0, 0;
|
|
75
|
-
--ion-color-light-shade: #d7d8da;
|
|
76
|
-
--ion-color-light-tint: #f5f6f9;
|
|
77
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "./out-tsc/spec",
|
|
5
|
-
"types": [
|
|
6
|
-
"jasmine",
|
|
7
|
-
"node"
|
|
8
|
-
]
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"src/test.ts",
|
|
12
|
-
"src/zone-flags.ts",
|
|
13
|
-
"src/polyfills.ts"
|
|
14
|
-
],
|
|
15
|
-
"include": [
|
|
16
|
-
"src/**/*.spec.ts",
|
|
17
|
-
"src/**/*.d.ts"
|
|
18
|
-
]
|
|
19
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "tslint:recommended",
|
|
3
|
-
"rulesDirectory": [
|
|
4
|
-
"codelyzer"
|
|
5
|
-
],
|
|
6
|
-
"rules": {
|
|
7
|
-
"array-type": false,
|
|
8
|
-
"arrow-parens": false,
|
|
9
|
-
"deprecation": {
|
|
10
|
-
"severity": "warn"
|
|
11
|
-
},
|
|
12
|
-
"import-blacklist": [
|
|
13
|
-
true,
|
|
14
|
-
"rxjs/Rx"
|
|
15
|
-
],
|
|
16
|
-
"interface-name": false,
|
|
17
|
-
"max-classes-per-file": false,
|
|
18
|
-
"max-line-length": [
|
|
19
|
-
true,
|
|
20
|
-
140
|
|
21
|
-
],
|
|
22
|
-
"member-access": false,
|
|
23
|
-
"member-ordering": [
|
|
24
|
-
true,
|
|
25
|
-
{
|
|
26
|
-
"order": [
|
|
27
|
-
"static-field",
|
|
28
|
-
"instance-field",
|
|
29
|
-
"static-method",
|
|
30
|
-
"instance-method"
|
|
31
|
-
]
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"no-consecutive-blank-lines": false,
|
|
35
|
-
"no-console": [
|
|
36
|
-
true,
|
|
37
|
-
"debug",
|
|
38
|
-
"info",
|
|
39
|
-
"time",
|
|
40
|
-
"timeEnd",
|
|
41
|
-
"trace"
|
|
42
|
-
],
|
|
43
|
-
"no-empty": false,
|
|
44
|
-
"no-inferrable-types": [
|
|
45
|
-
true,
|
|
46
|
-
"ignore-params"
|
|
47
|
-
],
|
|
48
|
-
"no-non-null-assertion": true,
|
|
49
|
-
"no-redundant-jsdoc": true,
|
|
50
|
-
"no-switch-case-fall-through": true,
|
|
51
|
-
"no-use-before-declare": true,
|
|
52
|
-
"no-var-requires": false,
|
|
53
|
-
"object-literal-key-quotes": [
|
|
54
|
-
true,
|
|
55
|
-
"as-needed"
|
|
56
|
-
],
|
|
57
|
-
"object-literal-sort-keys": false,
|
|
58
|
-
"ordered-imports": false,
|
|
59
|
-
"quotemark": [
|
|
60
|
-
true,
|
|
61
|
-
"single"
|
|
62
|
-
],
|
|
63
|
-
"trailing-comma": false,
|
|
64
|
-
"no-output-on-prefix": true,
|
|
65
|
-
"no-inputs-metadata-property": true,
|
|
66
|
-
"no-host-metadata-property": true,
|
|
67
|
-
"no-input-rename": true,
|
|
68
|
-
"no-output-rename": true,
|
|
69
|
-
"use-lifecycle-interface": true,
|
|
70
|
-
"use-pipe-transform-interface": true,
|
|
71
|
-
"one-variable-per-declaration": false,
|
|
72
|
-
"component-class-suffix": [true, "Page", "Component"],
|
|
73
|
-
"directive-class-suffix": true,
|
|
74
|
-
"directive-selector": [
|
|
75
|
-
true,
|
|
76
|
-
"attribute",
|
|
77
|
-
"app",
|
|
78
|
-
"camelCase"
|
|
79
|
-
],
|
|
80
|
-
"component-selector": [
|
|
81
|
-
true,
|
|
82
|
-
"element",
|
|
83
|
-
"app",
|
|
84
|
-
"page",
|
|
85
|
-
"kebab-case"
|
|
86
|
-
]
|
|
87
|
-
}
|
|
88
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: https://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
CFPropertyList (3.0.7)
|
|
5
|
-
base64
|
|
6
|
-
nkf
|
|
7
|
-
rexml
|
|
8
|
-
activesupport (7.2.2.1)
|
|
9
|
-
base64
|
|
10
|
-
benchmark (>= 0.3)
|
|
11
|
-
bigdecimal
|
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
13
|
-
connection_pool (>= 2.2.5)
|
|
14
|
-
drb
|
|
15
|
-
i18n (>= 1.6, < 2)
|
|
16
|
-
logger (>= 1.4.2)
|
|
17
|
-
minitest (>= 5.1)
|
|
18
|
-
securerandom (>= 0.3)
|
|
19
|
-
tzinfo (~> 2.0, >= 2.0.5)
|
|
20
|
-
addressable (2.8.7)
|
|
21
|
-
public_suffix (>= 2.0.2, < 7.0)
|
|
22
|
-
algoliasearch (1.27.5)
|
|
23
|
-
httpclient (~> 2.8, >= 2.8.3)
|
|
24
|
-
json (>= 1.5.1)
|
|
25
|
-
atomos (0.1.3)
|
|
26
|
-
base64 (0.2.0)
|
|
27
|
-
benchmark (0.4.0)
|
|
28
|
-
bigdecimal (3.1.9)
|
|
29
|
-
claide (1.1.0)
|
|
30
|
-
cocoapods (1.15.2)
|
|
31
|
-
addressable (~> 2.8)
|
|
32
|
-
claide (>= 1.0.2, < 2.0)
|
|
33
|
-
cocoapods-core (= 1.15.2)
|
|
34
|
-
cocoapods-deintegrate (>= 1.0.3, < 2.0)
|
|
35
|
-
cocoapods-downloader (>= 2.1, < 3.0)
|
|
36
|
-
cocoapods-plugins (>= 1.0.0, < 2.0)
|
|
37
|
-
cocoapods-search (>= 1.0.0, < 2.0)
|
|
38
|
-
cocoapods-trunk (>= 1.6.0, < 2.0)
|
|
39
|
-
cocoapods-try (>= 1.1.0, < 2.0)
|
|
40
|
-
colored2 (~> 3.1)
|
|
41
|
-
escape (~> 0.0.4)
|
|
42
|
-
fourflusher (>= 2.3.0, < 3.0)
|
|
43
|
-
gh_inspector (~> 1.0)
|
|
44
|
-
molinillo (~> 0.8.0)
|
|
45
|
-
nap (~> 1.0)
|
|
46
|
-
ruby-macho (>= 2.3.0, < 3.0)
|
|
47
|
-
xcodeproj (>= 1.23.0, < 2.0)
|
|
48
|
-
cocoapods-core (1.15.2)
|
|
49
|
-
activesupport (>= 5.0, < 8)
|
|
50
|
-
addressable (~> 2.8)
|
|
51
|
-
algoliasearch (~> 1.0)
|
|
52
|
-
concurrent-ruby (~> 1.1)
|
|
53
|
-
fuzzy_match (~> 2.0.4)
|
|
54
|
-
nap (~> 1.0)
|
|
55
|
-
netrc (~> 0.11)
|
|
56
|
-
public_suffix (~> 4.0)
|
|
57
|
-
typhoeus (~> 1.0)
|
|
58
|
-
cocoapods-deintegrate (1.0.5)
|
|
59
|
-
cocoapods-downloader (2.1)
|
|
60
|
-
cocoapods-plugins (1.0.0)
|
|
61
|
-
nap
|
|
62
|
-
cocoapods-search (1.0.1)
|
|
63
|
-
cocoapods-trunk (1.6.0)
|
|
64
|
-
nap (>= 0.8, < 2.0)
|
|
65
|
-
netrc (~> 0.11)
|
|
66
|
-
cocoapods-try (1.2.0)
|
|
67
|
-
colored2 (3.1.2)
|
|
68
|
-
concurrent-ruby (1.3.4)
|
|
69
|
-
connection_pool (2.5.0)
|
|
70
|
-
drb (2.2.1)
|
|
71
|
-
escape (0.0.4)
|
|
72
|
-
ethon (0.16.0)
|
|
73
|
-
ffi (>= 1.15.0)
|
|
74
|
-
ffi (1.17.1)
|
|
75
|
-
ffi (1.17.1-aarch64-linux-gnu)
|
|
76
|
-
ffi (1.17.1-aarch64-linux-musl)
|
|
77
|
-
ffi (1.17.1-arm-linux-gnu)
|
|
78
|
-
ffi (1.17.1-arm-linux-musl)
|
|
79
|
-
ffi (1.17.1-arm64-darwin)
|
|
80
|
-
ffi (1.17.1-x86-linux-gnu)
|
|
81
|
-
ffi (1.17.1-x86-linux-musl)
|
|
82
|
-
ffi (1.17.1-x86_64-darwin)
|
|
83
|
-
ffi (1.17.1-x86_64-linux-gnu)
|
|
84
|
-
ffi (1.17.1-x86_64-linux-musl)
|
|
85
|
-
fourflusher (2.3.1)
|
|
86
|
-
fuzzy_match (2.0.4)
|
|
87
|
-
gh_inspector (1.1.3)
|
|
88
|
-
httpclient (2.8.3)
|
|
89
|
-
i18n (1.14.6)
|
|
90
|
-
concurrent-ruby (~> 1.0)
|
|
91
|
-
json (2.9.1)
|
|
92
|
-
logger (1.6.4)
|
|
93
|
-
minitest (5.25.4)
|
|
94
|
-
molinillo (0.8.0)
|
|
95
|
-
nanaimo (0.3.0)
|
|
96
|
-
nap (1.1.0)
|
|
97
|
-
netrc (0.11.0)
|
|
98
|
-
nkf (0.2.0)
|
|
99
|
-
public_suffix (4.0.7)
|
|
100
|
-
rexml (3.4.0)
|
|
101
|
-
ruby-macho (2.5.1)
|
|
102
|
-
securerandom (0.4.1)
|
|
103
|
-
typhoeus (1.4.1)
|
|
104
|
-
ethon (>= 0.9.0)
|
|
105
|
-
tzinfo (2.0.6)
|
|
106
|
-
concurrent-ruby (~> 1.0)
|
|
107
|
-
xcodeproj (1.25.1)
|
|
108
|
-
CFPropertyList (>= 2.3.3, < 4.0)
|
|
109
|
-
atomos (~> 0.1.3)
|
|
110
|
-
claide (>= 1.0.2, < 2.0)
|
|
111
|
-
colored2 (~> 3.1)
|
|
112
|
-
nanaimo (~> 0.3.0)
|
|
113
|
-
rexml (>= 3.3.6, < 4.0)
|
|
114
|
-
|
|
115
|
-
PLATFORMS
|
|
116
|
-
aarch64-linux-gnu
|
|
117
|
-
aarch64-linux-musl
|
|
118
|
-
arm-linux-gnu
|
|
119
|
-
arm-linux-musl
|
|
120
|
-
arm64-darwin
|
|
121
|
-
ruby
|
|
122
|
-
x86-linux-gnu
|
|
123
|
-
x86-linux-musl
|
|
124
|
-
x86_64-darwin
|
|
125
|
-
x86_64-linux-gnu
|
|
126
|
-
x86_64-linux-musl
|
|
127
|
-
|
|
128
|
-
DEPENDENCIES
|
|
129
|
-
activesupport (>= 6.1.7.5, != 7.1.0)
|
|
130
|
-
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
|
|
131
|
-
xcodeproj (< 1.26.0)
|
|
132
|
-
|
|
133
|
-
RUBY VERSION
|
|
134
|
-
ruby 3.4.1p0
|
|
135
|
-
|
|
136
|
-
BUNDLED WITH
|
|
137
|
-
2.6.2
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# Add project specific ProGuard rules here.
|
|
2
|
-
# By default, the flags in this file are appended to flags specified
|
|
3
|
-
# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
|
|
4
|
-
# You can edit the include path and order by changing the proguardFiles
|
|
5
|
-
# directive in build.gradle.
|
|
6
|
-
#
|
|
7
|
-
# For more details, see
|
|
8
|
-
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
9
|
-
|
|
10
|
-
# Add any project specific keep options here:
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
-
xmlns:tools="http://schemas.android.com/tools">
|
|
4
|
-
|
|
5
|
-
<application
|
|
6
|
-
android:usesCleartextTraffic="true"
|
|
7
|
-
tools:targetApi="28"
|
|
8
|
-
tools:ignore="GoogleAppIndexingWarning"/>
|
|
9
|
-
</manifest>
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Copyright (C) 2014 The Android Open Source Project
|
|
3
|
-
|
|
4
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
you may not use this file except in compliance with the License.
|
|
6
|
-
You may obtain a copy of the License at
|
|
7
|
-
|
|
8
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
|
|
10
|
-
Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
See the License for the specific language governing permissions and
|
|
14
|
-
limitations under the License.
|
|
15
|
-
-->
|
|
16
|
-
<inset xmlns:android="http://schemas.android.com/apk/res/android"
|
|
17
|
-
android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
|
|
18
|
-
android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
|
|
19
|
-
android:insetTop="@dimen/abc_edit_text_inset_top_material"
|
|
20
|
-
android:insetBottom="@dimen/abc_edit_text_inset_bottom_material"
|
|
21
|
-
>
|
|
22
|
-
|
|
23
|
-
<selector>
|
|
24
|
-
<!--
|
|
25
|
-
This file is a copy of abc_edit_text_material (https://bit.ly/3k8fX7I).
|
|
26
|
-
The item below with state_pressed="false" and state_focused="false" causes a NullPointerException.
|
|
27
|
-
NullPointerException:tempt to invoke virtual method 'android.graphics.drawable.Drawable android.graphics.drawable.Drawable$ConstantState.newDrawable(android.content.res.Resources)'
|
|
28
|
-
|
|
29
|
-
<item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
|
|
30
|
-
|
|
31
|
-
For more info, see https://bit.ly/3CdLStv (react-native/pull/29452) and https://bit.ly/3nxOMoR.
|
|
32
|
-
-->
|
|
33
|
-
<item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
|
|
34
|
-
<item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/>
|
|
35
|
-
</selector>
|
|
36
|
-
|
|
37
|
-
</inset>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<resources>
|
|
2
|
-
|
|
3
|
-
<!-- Base application theme. -->
|
|
4
|
-
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
|
|
5
|
-
<!-- Customize your theme here. -->
|
|
6
|
-
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
|
|
7
|
-
</style>
|
|
8
|
-
|
|
9
|
-
</resources>
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
#import <UIKit/UIKit.h>
|
|
2
|
-
#import <XCTest/XCTest.h>
|
|
3
|
-
|
|
4
|
-
#import <React/RCTLog.h>
|
|
5
|
-
#import <React/RCTRootView.h>
|
|
6
|
-
|
|
7
|
-
#define TIMEOUT_SECONDS 600
|
|
8
|
-
#define TEXT_TO_LOOK_FOR @"Welcome to React"
|
|
9
|
-
|
|
10
|
-
@interface FaceSDKTests : XCTestCase
|
|
11
|
-
|
|
12
|
-
@end
|
|
13
|
-
|
|
14
|
-
@implementation FaceSDKTests
|
|
15
|
-
|
|
16
|
-
- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL (^)(UIView *view))test
|
|
17
|
-
{
|
|
18
|
-
if (test(view)) {
|
|
19
|
-
return YES;
|
|
20
|
-
}
|
|
21
|
-
for (UIView *subview in [view subviews]) {
|
|
22
|
-
if ([self findSubviewInView:subview matching:test]) {
|
|
23
|
-
return YES;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
return NO;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
- (void)testRendersWelcomeScreen
|
|
30
|
-
{
|
|
31
|
-
UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
|
|
32
|
-
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
|
|
33
|
-
BOOL foundElement = NO;
|
|
34
|
-
|
|
35
|
-
__block NSString *redboxError = nil;
|
|
36
|
-
#ifdef DEBUG
|
|
37
|
-
RCTSetLogFunction(
|
|
38
|
-
^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
|
|
39
|
-
if (level >= RCTLogLevelError) {
|
|
40
|
-
redboxError = message;
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
#endif
|
|
44
|
-
|
|
45
|
-
while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
|
|
46
|
-
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
|
47
|
-
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
|
48
|
-
|
|
49
|
-
foundElement = [self findSubviewInView:vc.view
|
|
50
|
-
matching:^BOOL(UIView *view) {
|
|
51
|
-
if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
|
|
52
|
-
return YES;
|
|
53
|
-
}
|
|
54
|
-
return NO;
|
|
55
|
-
}];
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
#ifdef DEBUG
|
|
59
|
-
RCTSetLogFunction(RCTDefaultLogFunction);
|
|
60
|
-
#endif
|
|
61
|
-
|
|
62
|
-
XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
|
|
63
|
-
XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
@end
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>CFBundleDevelopmentRegion</key>
|
|
6
|
-
<string>en</string>
|
|
7
|
-
<key>CFBundleExecutable</key>
|
|
8
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
9
|
-
<key>CFBundleIdentifier</key>
|
|
10
|
-
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
11
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
|
12
|
-
<string>6.0</string>
|
|
13
|
-
<key>CFBundleName</key>
|
|
14
|
-
<string>$(PRODUCT_NAME)</string>
|
|
15
|
-
<key>CFBundlePackageType</key>
|
|
16
|
-
<string>BNDL</string>
|
|
17
|
-
<key>CFBundleShortVersionString</key>
|
|
18
|
-
<string>1.0</string>
|
|
19
|
-
<key>CFBundleSignature</key>
|
|
20
|
-
<string>????</string>
|
|
21
|
-
<key>CFBundleVersion</key>
|
|
22
|
-
<string>1</string>
|
|
23
|
-
</dict>
|
|
24
|
-
</plist>
|
/package/examples/capacitor/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/examples/react-native/android/app/src/main/res/{mipmap-xxxhdpi → drawable}/ic_launcher.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/examples/react-native/ios/{FaceSDK → App}/Images.xcassets/AppIcon.appiconset/Contents.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|