37 lines
784 B
YAML
37 lines
784 B
YAML
name: native_opencv
|
|
description: A new flutter plugin project.
|
|
version: 0.0.1
|
|
publish_to: none
|
|
|
|
environment:
|
|
sdk: ">=2.12.0 <3.0.0"
|
|
flutter: ">=1.20.0"
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
native_opencv_macos:
|
|
path: ../native_opencv_macos
|
|
native_opencv_linux:
|
|
path: ../native_opencv_linux
|
|
native_opencv_windows:
|
|
path: ../native_opencv_windows
|
|
|
|
dev_dependencies:
|
|
flutter_test:
|
|
sdk: flutter
|
|
|
|
flutter:
|
|
plugin:
|
|
platforms:
|
|
android:
|
|
package: com.example.native_opencv
|
|
pluginClass: NativeOpencvPlugin
|
|
ios:
|
|
pluginClass: NativeOpencvPlugin
|
|
macos:
|
|
default_package: native_opencv_macos
|
|
linux:
|
|
default_package: native_opencv_linux
|
|
windows:
|
|
default_package: native_opencv_windows |