pubspec.yaml 2.4 KB

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