react-native-vision-camera/cpp
Marc Rousavy 0f0f1fbb07
fix: React Native 0.65 compatibility (#230)
* Update Hermes Header import for RN 0.65

* Update VisionCamera.podspec
2021-06-28 18:27:03 +02:00
..
MakeJSIRuntime.h fix: React Native 0.65 compatibility (#230) 2021-06-28 18:27:03 +02:00
README.md feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00
SpeedChecker.h feature: Frame Processors (iOS) (#2) 2021-05-06 14:11:55 +02:00

cpp

This folder contains the Shared C++ code for react-native-vision-camera.

Prerequesites

  1. For Android, download the NDK and build tools
  2. For iOS, Xcode will be enough.
  3. Install cpplint
    brew install cpplint
    

Getting Started

It is recommended that you work on the code using the Example project (example/android/ or example/ios/VisionCameraExample.xcworkspace), since that always includes the React Native header files, plus you can easily test changes that way.

You can however still edit the library project here by opening this folder with any C++ editor.

Committing

Before committing, make sure that you're not violating the cpplint codestyles. To do that, run the following command:

yarn check-cpp