pubspec.yaml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. name: vnote_device_plugin
  2. description: A new Flutter plugin project.
  3. version: 0.0.1
  4. homepage:
  5. environment:
  6. sdk: '>=3.0.7 <4.0.0'
  7. flutter: ">=3.3.0"
  8. dependencies:
  9. flutter:
  10. sdk: flutter
  11. plugin_platform_interface: ^2.0.2
  12. dev_dependencies:
  13. flutter_test:
  14. sdk: flutter
  15. flutter_lints: ^2.0.0
  16. # For information on the generic Dart part of this file, see the
  17. # following page: https://dart.dev/tools/pub/pubspec
  18. # The following section is specific to Flutter packages.
  19. flutter:
  20. # This section identifies this Flutter project as a plugin project.
  21. # The 'pluginClass' specifies the class (in Java, Kotlin, Swift, Objective-C, etc.)
  22. # which should be registered in the plugin registry. This is required for
  23. # using method channels.
  24. # The Android 'package' specifies package in which the registered class is.
  25. # This is required for using method channels on Android.
  26. # The 'ffiPlugin' specifies that native code should be built and bundled.
  27. # This is required for using `dart:ffi`.
  28. # All these are used by the tooling to maintain consistency when
  29. # adding or updating assets for this project.
  30. plugin:
  31. platforms:
  32. android:
  33. package: com.example.vnote_device_plugin
  34. pluginClass: VnoteDevicePlugin
  35. # To add assets to your plugin package, add an assets section, like this:
  36. # assets:
  37. # - images/a_dot_burr.jpeg
  38. # - images/a_dot_ham.jpeg
  39. #
  40. # For details regarding assets in packages, see
  41. # https://flutter.dev/assets-and-images/#from-packages
  42. #
  43. # An image asset can refer to one or more resolution-specific "variants", see
  44. # https://flutter.dev/assets-and-images/#resolution-aware
  45. # To add custom fonts to your plugin package, add a fonts section here,
  46. # in this "flutter" section. Each entry in this list should have a
  47. # "family" key with the font family name, and a "fonts" key with a
  48. # list giving the asset and other descriptors for the font. For
  49. # example:
  50. # fonts:
  51. # - family: Schyler
  52. # fonts:
  53. # - asset: fonts/Schyler-Regular.ttf
  54. # - asset: fonts/Schyler-Italic.ttf
  55. # style: italic
  56. # - family: Trajan Pro
  57. # fonts:
  58. # - asset: fonts/TrajanPro.ttf
  59. # - asset: fonts/TrajanPro_Bold.ttf
  60. # weight: 700
  61. #
  62. # For details regarding fonts in packages, see
  63. # https://flutter.dev/custom-fonts/#from-packages