Name Date Size #Lines LOC

..26-Sep-2023-

android/H26-Sep-2023-898725

build/H26-Sep-2023-248111

ios/H26-Sep-2023-1,205965

src/H26-Sep-2023-253103

.eslintrc.jsH A D26-Sep-2023103 31

.npmignoreH A D26-Sep-2023183 128

CHANGELOG.mdH A D26-Sep-20236.6 KiB16988

README.mdH A D26-Sep-20231.3 KiB3519

babel.config.jsH A D26-Sep-2023104 31

package.jsonH A D26-Sep-20231.2 KiB4645

tsconfig.jsonH A D26-Sep-2023217 109

unimodule.jsonH A D26-Sep-202370 54

README.md

1# expo-face-detector
2
3Lets you use the power of MLKit (https://firebase.google.com/docs/ml-kit/detect-faces) framework to detect faces on images.
4
5# API documentation
6
7- [Documentation for the main branch](https://github.com/expo/expo/blob/main/docs/pages/versions/unversioned/sdk/facedetector.mdx)
8- [Documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/facedetector/)
9
10# Installation in managed Expo projects
11
12For [managed](https://docs.expo.dev/archive/managed-vs-bare/) Expo projects, please follow the installation instructions in the [API documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/facedetector/).
13
14# Installation in bare React Native projects
15
16For bare React Native projects, you must ensure that you have [installed and configured the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing.
17
18### Add the package to your npm dependencies
19
20```
21npx expo install expo-face-detector
22```
23
24### Configure for iOS
25
26Run `npx pod-install` after installing the npm package.
27
28### Configure for Android
29
30No additional set up necessary.
31
32# Contributing
33
34Contributions are very welcome! Please refer to guidelines described in the [contributing guide](https://github.com/expo/expo#contributing).
35