pubspec.yaml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. name: wfc_example
  2. description: Demonstrates how to use the imclient and rtckit plugin.
  3. version: 0.0.1
  4. # The following line prevents the package from being accidentally published to
  5. # pub.dev using `flutter pub publish`. This is preferred for private packages.
  6. publish_to: 'none' # Remove this line if you wish to publish to pub.dev
  7. environment:
  8. sdk: ">=3.0.0"
  9. flutter: ">=1.20.0"
  10. # Dependencies specify other packages that your package needs in order to work.
  11. # To automatically upgrade your package dependencies to the latest versions
  12. # consider running `flutter pub upgrade --major-versions`. Alternatively,
  13. # dependencies can be manually updated by changing the version numbers below to
  14. # the latest version available on pub.dev. To see which dependencies have newer
  15. # versions available, run `flutter pub outdated`.
  16. dependencies:
  17. flutter:
  18. sdk: flutter
  19. imclient:
  20. # When depending on this package from a real application you should use:
  21. # rtckit: ^x.y.z
  22. # See https://dart.dev/tools/pub/dependencies#version-constraints
  23. # The example app is bundled with the plugin so we use a path dependency on
  24. # the parent directory to use the current plugin's version.
  25. path: ../imclient/
  26. rtckit:
  27. # When depending on this package from a real application you should use:
  28. # rtckit: ^x.y.z
  29. # See https://dart.dev/tools/pub/dependencies#version-constraints
  30. # The example app is bundled with the plugin so we use a path dependency on
  31. # the parent directory to use the current plugin's version.
  32. path: ../rtckit/
  33. # momentclient:
  34. # path: ../momentclient/
  35. # The following adds the Cupertino Icons font to your application.
  36. # Use with the CupertinoIcons class for iOS style icons.
  37. cupertino_icons: ^1.0.5
  38. shared_preferences: ^2.1.0
  39. fluttertoast: ^8.2.1
  40. image_picker: ^1.1.2
  41. photo_view: ^0.15.0
  42. cached_network_image: ^3.4.1
  43. http: ^1.2.1
  44. event_bus: ^2.0.0
  45. image: ^4.0.15
  46. badges: ^3.0.3
  47. intl: ^0.20.2
  48. file_picker: ^8.0.3
  49. flutter_sound: ^9.2.13
  50. path_provider: ^2.1.1
  51. permission_handler: ^10.4.3
  52. wechat_camera_picker: ^4.2.1
  53. video_player: ^2.7.1
  54. url_launcher: ^6.1.14
  55. flutter_dynamic_icon: ^2.1.0
  56. provider: ^6.1.4
  57. webview_flutter: ^4.7.0 # Added webview_flutter
  58. dsbridge_flutter: 1.2.0
  59. logger: any
  60. path: any
  61. pinyin: ^3.3.0
  62. dev_dependencies:
  63. flutter_test:
  64. sdk: flutter
  65. # The "flutter_lints" package below contains a set of recommended lints to
  66. # encourage good coding practices. The lint set provided by the package is
  67. # activated in the `analysis_options.yaml` file located at the root of your
  68. # package. See that file for information about deactivating specific lint
  69. # rules and activating additional ones.
  70. flutter_lints: ^4.0.0
  71. # For information on the generic Dart part of this file, see the
  72. # following page: https://dart.dev/tools/pub/pubspec
  73. # The following section is specific to Flutter packages.
  74. flutter:
  75. # The following line ensures that the Material Icons font is
  76. # included with your application, so that you can use the icons in
  77. # the material Icons class.
  78. uses-material-design: true
  79. assets:
  80. - assets/images/
  81. - assets/images/file_type/
  82. - assets/images/input/
  83. - assets/images/input/voice/
  84. # To add assets to your application, add an assets section, like this:
  85. # assets:
  86. # - images/a_dot_burr.jpeg
  87. # - images/a_dot_ham.jpeg
  88. # An image asset can refer to one or more resolution-specific "variants", see
  89. # https://flutter.dev/assets-and-images/#resolution-aware
  90. # For details regarding adding assets from package dependencies, see
  91. # https://flutter.dev/assets-and-images/#from-packages
  92. # To add custom fonts to your application, add a fonts section here,
  93. # in this "flutter" section. Each entry in this list should have a
  94. # "family" key with the font family name, and a "fonts" key with a
  95. # list giving the asset and other descriptors for the font. For
  96. # example:
  97. # fonts:
  98. # - family: Schyler
  99. # fonts:
  100. # - asset: fonts/Schyler-Regular.ttf
  101. # - asset: fonts/Schyler-Italic.ttf
  102. # style: italic
  103. # - family: Trajan Pro
  104. # fonts:
  105. # - asset: fonts/TrajanPro.ttf
  106. # - asset: fonts/TrajanPro_Bold.ttf
  107. # weight: 700
  108. #
  109. # For details regarding fonts from package dependencies,
  110. # see https://flutter.dev/custom-fonts/#from-packages