pubspec.yaml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. name: photo_classify
  2. description: "Classify photo"
  3. version: 0.0.1
  4. homepage:
  5. environment:
  6. sdk: ^3.6.0
  7. flutter: '>=3.3.0'
  8. dependencies:
  9. flutter:
  10. sdk: flutter
  11. flutter_web_plugins:
  12. sdk: flutter
  13. web: ^0.5.1
  14. plugin_platform_interface: ^2.0.2
  15. dev_dependencies:
  16. flutter_test:
  17. sdk: flutter
  18. flutter_lints: ^5.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.photo_classify
  37. pluginClass: PhotoClassifyPlugin
  38. ios:
  39. pluginClass: PhotoClassifyPlugin
  40. linux:
  41. pluginClass: PhotoClassifyPlugin
  42. macos:
  43. pluginClass: PhotoClassifyPlugin
  44. windows:
  45. pluginClass: PhotoClassifyPluginCApi
  46. web:
  47. pluginClass: PhotoClassifyWeb
  48. fileName: photo_classify_web.dart
  49. # To add assets to your plugin package, add an assets section, like this:
  50. # assets:
  51. # - images/a_dot_burr.jpeg
  52. # - images/a_dot_ham.jpeg
  53. #
  54. # For details regarding assets in packages, see
  55. # https://flutter.dev/to/asset-from-package
  56. #
  57. # An image asset can refer to one or more resolution-specific "variants", see
  58. # https://flutter.dev/to/resolution-aware-images
  59. # To add custom fonts to your plugin package, add a fonts section here,
  60. # in this "flutter" section. Each entry in this list should have a
  61. # "family" key with the font family name, and a "fonts" key with a
  62. # list giving the asset and other descriptors for the font. For
  63. # example:
  64. # fonts:
  65. # - family: Schyler
  66. # fonts:
  67. # - asset: fonts/Schyler-Regular.ttf
  68. # - asset: fonts/Schyler-Italic.ttf
  69. # style: italic
  70. # - family: Trajan Pro
  71. # fonts:
  72. # - asset: fonts/TrajanPro.ttf
  73. # - asset: fonts/TrajanPro_Bold.ttf
  74. # weight: 700
  75. #
  76. # For details regarding fonts in packages, see
  77. # https://flutter.dev/to/font-from-package