├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── feature-request.md ├── README.md ├── RNFaceApi.podspec ├── android ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── reactlibrary │ ├── JSONConstructor.java │ ├── RNFaceApiModule.java │ └── RNFaceApiPackage.java ├── example ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── regula │ │ │ │ └── face │ │ │ │ └── api │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── regula │ │ │ │ └── face │ │ │ │ └── api │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── images │ └── portrait.png ├── index.js ├── ios │ ├── FaceApi.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── FaceApi-tvOS.xcscheme │ │ │ └── FaceApi.xcscheme │ ├── FaceApi.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── FaceApi │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── Podfile ├── metro.config.js └── package.json ├── index.d.ts ├── index.js ├── ios ├── RFSWJSONConstructor.h ├── RFSWJSONConstructor.m ├── RNFaceApi.h ├── RNFaceApi.m ├── RNFaceApi.xcodeproj │ └── project.pbxproj └── RNFaceApi.xcworkspace │ └── contents.xcworkspacedata └── package.json /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/README.md -------------------------------------------------------------------------------- /RNFaceApi.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/RNFaceApi.podspec -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/reactlibrary/JSONConstructor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/android/src/main/java/com/reactlibrary/JSONConstructor.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactlibrary/RNFaceApiModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/android/src/main/java/com/reactlibrary/RNFaceApiModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactlibrary/RNFaceApiPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/android/src/main/java/com/reactlibrary/RNFaceApiPackage.java -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/App.js -------------------------------------------------------------------------------- /example/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/__tests__/App-test.js -------------------------------------------------------------------------------- /example/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/_BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/regula/face/api/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/debug/java/com/regula/face/api/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/regula/face/api/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/java/com/regula/face/api/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/regula/face/api/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/java/com/regula/face/api/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/images/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/images/portrait.png -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/FaceApi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/FaceApi.xcodeproj/xcshareddata/xcschemes/FaceApi-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi.xcodeproj/xcshareddata/xcschemes/FaceApi-tvOS.xcscheme -------------------------------------------------------------------------------- /example/ios/FaceApi.xcodeproj/xcshareddata/xcschemes/FaceApi.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi.xcodeproj/xcshareddata/xcschemes/FaceApi.xcscheme -------------------------------------------------------------------------------- /example/ios/FaceApi.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/FaceApi.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/FaceApi/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/FaceApi/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/FaceApi/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/FaceApi/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/FaceApi/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/FaceApi/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi/Info.plist -------------------------------------------------------------------------------- /example/ios/FaceApi/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/FaceApi/main.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/example/package.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/index.js -------------------------------------------------------------------------------- /ios/RFSWJSONConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/ios/RFSWJSONConstructor.h -------------------------------------------------------------------------------- /ios/RFSWJSONConstructor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/ios/RFSWJSONConstructor.m -------------------------------------------------------------------------------- /ios/RNFaceApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/ios/RNFaceApi.h -------------------------------------------------------------------------------- /ios/RNFaceApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/ios/RNFaceApi.m -------------------------------------------------------------------------------- /ios/RNFaceApi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/ios/RNFaceApi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNFaceApi.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/ios/RNFaceApi.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melody413/ReactNative-Face-API/HEAD/package.json --------------------------------------------------------------------------------