Generate Vision Camera plugin boilerplate
npm install vision-camera-plugin-builder``sh`
npx vision-camera-plugin-builder@latest ios
`sh`
npx vision-camera-plugin-builder@latest android
After generating native files, cli will output additional post-setup info
| vision-camera-plugin-builder | react-native-vision-camera
| --- | --- |
| >= 0.8.0 | 4.0.0+ |
| >= 0.7.0 | 3.8.0+ |
| >= 0.5.0 | 3.5.0+ |
| >= 0.3.0 | 3.0.0+ |
| < 0.3.0 | 2.0.0+ |
For vision-camera-, it generates:
- Android - inside Android source set:
``
βββ android/src/main/
β βββ
β βββ βββ
β βββ
`
- iOS - inside iOS library's source code folder:
`
βββ ios
β βββ
β βββ βββ
β βββ βββ
In case of library use case the CLI will output how to proceed with additional steps for library's .podspec and build.gradle files
For local usage inside application, it generates:
- Android - inside Android source set:
``
βββ android/src/main/
β βββ
β βββ βββ
β βββ βββ
`
- iOS - inside iOS library's source code folder:
``
βββ ios
β βββ
β βββ βββ
β βββ βββ
In case of application use case the CLI will output how to proceed with additional steps for Android application linking of the plugin's package
| Flag | Input | Description |
| ---- | ----- | ----------- |
| --projectPath (iOS only) | [string] | Path to .xcodeproj file |
| --manifestPath (Android only) | [string] | Path to project's Android Manifest file |
| --pluginName | [string] | Name of the plugin |
| --methodName | [string] | Name of plugin's exported method |
| --lang | [choices] | "Kotlin" or "Java" for Android & "Swift" or "ObjC" or "ObjCPP" for iOS |
MIT