pubspec.yaml 2.4 KB

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