pubspec.yaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. name: module_me
  2. description: A new Flutter module.
  3. # The following defines the version and build number for your application.
  4. # A version number is three numbers separated by dots, like 1.2.43
  5. # followed by an optional build number separated by a +.
  6. # Both the version and the builder number may be overridden in flutter
  7. # build by specifying --build-name and --build-number, respectively.
  8. # In Android, build-name is used as versionName while build-number used as versionCode.
  9. # Read more about Android versioning at https://developer.android.com/studio/publish/versioning
  10. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
  11. # Read more about iOS versioning at
  12. # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
  13. #
  14. # This version is used _only_ for the Runner app, which is used if you just do
  15. # a `flutter run` or a `flutter make-host-app-editable`. It has no impact
  16. # on any other native host app that you embed your Flutter project into.
  17. version: 1.0.0+1
  18. environment:
  19. sdk: ">=2.12.0 <3.0.0"
  20. dependencies:
  21. flutter:
  22. sdk: flutter
  23. common_project:
  24. path: ../../plugins/common_project
  25. cupertino_icons: ^1.0.1
  26. dev_dependencies:
  27. flutter_test:
  28. sdk: flutter
  29. flutter:
  30. uses-material-design: true
  31. assets:
  32. - assets/images/
  33. module:
  34. androidX: true
  35. androidPackage: com.example.module_me
  36. iosBundleIdentifier: com.example.moduleMe