pubspec.yaml (2987B)
1 name: rs_flutter_app 2 description: Bahnhofsfoto-App for Android and iOS using Flutter 3 4 # The following defines the version and build number for your application. 5 # A version number is three numbers separated by dots, like 1.2.43 6 # followed by an optional build number separated by a +. 7 # Both the version and the builder number may be overridden in flutter 8 # build by specifying --build-name and --build-number, respectively. 9 # In Android, build-name is used as versionName while build-number used as versionCode. 10 # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 11 # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 12 # Read more about iOS versioning at 13 # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 14 version: 0.1.0+1 15 16 environment: 17 sdk: ">=2.1.0 <3.0.0" 18 19 dependencies: 20 flutter: 21 sdk: flutter 22 23 # The following adds the Cupertino Icons font to your application. 24 # Use with the CupertinoIcons class for iOS style icons. 25 cupertino_icons: ^0.1.3 26 27 bloc: ^3.0.0 28 flutter_bloc: ^3.2.0 29 equatable: ^0.6.0 30 31 flutter_map: ^0.8.2 32 latlong: ^0.6.1 33 flutter_map_marker_cluster: ^0.2.7 34 35 url_launcher: ^5.4.2 36 maps_launcher: ^1.2.0 37 38 flutter_cache_manager: ^1.1.3 39 grizzly_io: ^2.2.0 40 41 flutter_svg: ^0.17.1 42 43 multi_image_picker: ^4.6.3 44 45 dev_dependencies: 46 flutter_test: 47 sdk: flutter 48 49 flutter_driver: 50 sdk: flutter 51 test: any 52 53 # For information on the generic Dart part of this file, see the 54 # following page: https://dart.dev/tools/pub/pubspec 55 56 # The following section is specific to Flutter. 57 flutter: 58 59 # The following line ensures that the Material Icons font is 60 # included with your application, so that you can use the icons in 61 # the material Icons class. 62 uses-material-design: true 63 64 # To add assets to your application, add an assets section, like this: 65 assets: 66 - assets/ 67 68 # An image asset can refer to one or more resolution-specific "variants", see 69 # https://flutter.dev/assets-and-images/#resolution-aware. 70 71 # For details regarding adding assets from package dependencies, see 72 # https://flutter.dev/assets-and-images/#from-packages 73 74 # To add custom fonts to your application, add a fonts section here, 75 # in this "flutter" section. Each entry in this list should have a 76 # "family" key with the font family name, and a "fonts" key with a 77 # list giving the asset and other descriptors for the font. For 78 # example: 79 # fonts: 80 # - family: Schyler 81 # fonts: 82 # - asset: fonts/Schyler-Regular.ttf 83 # - asset: fonts/Schyler-Italic.ttf 84 # style: italic 85 # - family: Trajan Pro 86 # fonts: 87 # - asset: fonts/TrajanPro.ttf 88 # - asset: fonts/TrajanPro_Bold.ttf 89 # weight: 700 90 # 91 # For details regarding fonts from package dependencies, 92 # see https://flutter.dev/custom-fonts/#from-packages