mnemo_cards/pubspec.yaml

169 lines
5.1 KiB
YAML
Raw Normal View History

2024-05-22 20:48:44 +00:00
name: mnemo_cards
description: Mnemo
2024-06-21 19:12:29 +00:00
publish_to: 'none'
2024-07-24 22:20:08 +00:00
version: 1.0.1+14
2024-05-22 20:48:44 +00:00
environment:
sdk: '>=3.1.3 <4.0.0'
dependencies:
flutter:
sdk: flutter
mnemo_cards_common:
path: ../mnemo_cards_common
2024-07-18 21:45:04 +00:00
mnemo_cards_frontend_common:
path: ../mnemo_cards_frontend_common
2024-05-22 20:48:44 +00:00
get_it:
2024-06-21 19:12:29 +00:00
shared_preferences: ^2.2.3
flutter_secure_storage: ^9.2.2
2024-05-22 20:48:44 +00:00
rxdart:
firebase_core: ^2.30.1
2024-06-21 19:12:29 +00:00
# firebase_crashlytics:
# firebase_storage:
2024-05-22 20:48:44 +00:00
cloud_firestore: ^4.17.2
freezed:
json_serializable:
json_annotation: ^4.7.0
auto_size_text: ^3.0.0
path_provider:
2024-06-22 12:29:18 +00:00
# google_fonts:
2024-05-22 20:48:44 +00:00
auto_route:
flutter_tts: ^4.0.2
dio: ^5.3.3
copy_with_extension_gen: ^5.0.4
archive: ^3.4.6
shimmer: ^3.0.0
google_sign_in:
device_info_plus: ^9.1.2
package_info_plus: ^8.0.0
2024-07-18 21:45:04 +00:00
yandex_mobileads: ^7.1.0
2024-05-28 21:25:51 +00:00
firebase_crashlytics: ^3.5.7
firebase_analytics: ^10.10.7
2024-05-22 20:48:44 +00:00
in_app_purchase: ^3.2.0
dot_navigation_bar: ^1.0.2
2024-06-08 23:34:38 +00:00
reorderables: ^0.6.0
2024-05-22 20:48:44 +00:00
story: ^1.1.0
flutter_screenutil: ^5.9.0
2024-06-11 00:28:57 +00:00
fl_chart: ^0.68.0
2024-05-22 20:48:44 +00:00
yookassa_client: ^1.0.2
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
webview_flutter: ^4.7.0
flutter_colorpicker: ^1.1.0
jailbreak_root_detection: ^1.1.1
no_screenshot: ^0.0.1+6
file_picker:
url_launcher: ^6.2.6
2024-07-18 21:45:04 +00:00
# RUSTORE
flutter_rustore_billing: ^6.0.1
2024-05-22 20:48:44 +00:00
2024-07-03 20:56:13 +00:00
collection: any
freezed_annotation: any
copy_with_extension: any
2024-05-22 20:48:44 +00:00
dev_dependencies:
flutter_test:
sdk: flutter
auto_route_generator:
build_runner:
injectable_generator:
2024-07-18 21:45:04 +00:00
flutter_lints: ^4.0.0
2024-05-22 20:48:44 +00:00
flutter_launcher_icons: ^0.13.1
flutter_native_splash: ^2.4.0
# The following section is specific to Flutter packages.
flutter:
uses-material-design: true
# To add assets to your application, add an assets section, like this:
assets:
- images/cerdo.jpg
- assets/
- icons/
2024-06-22 12:29:18 +00:00
fonts:
- family: Nunito
fonts:
- asset: fonts/Nunito-VariableFont_wght.ttf
2024-05-22 20:48:44 +00:00
flutter_launcher_icons:
android: "launcher_icon"
ios: true
2024-06-21 19:12:29 +00:00
image_path: "images/icon.png"
2024-05-22 20:48:44 +00:00
min_sdk_android: 21 # android min sdk min:16, default 21
flutter_native_splash:
2024-06-21 19:12:29 +00:00
# Only one parameter can be used, color and background_image cannot both be set.
2024-05-22 20:48:44 +00:00
color: "#ffffff"
#background_image: "assets/background.png"
# Optional parameters are listed below. To enable a parameter, uncomment the line by removing
# the leading # character.
# The image parameter allows you to specify an image used in the splash screen. It must be a
# png file and should be sized for 4x pixel density.
image: images/cerdo_big.jpg
# The branding property allows you to specify an image used as branding in the splash screen.
# It must be a png file. It is supported for Android, iOS and the Web. For Android 12,
# see the Android 12 section below.
#branding: assets/dart.png
# To position the branding image at the bottom of the screen you can use bottom, bottomRight,
# and bottomLeft. The default values is bottom if not specified or specified something else.
#branding_mode: bottom
# The color_dark, background_image_dark, image_dark, branding_dark are parameters that set the background
# and image when the device is in dark mode. If they are not specified, the app will use the
# parameters from above. If the image_dark parameter is specified, color_dark or
# background_image_dark must be specified. color_dark and background_image_dark cannot both be
# set.
#color_dark: "#042a49"
#background_image_dark: "assets/dark-background.png"
#image_dark: assets/splash-invert.png
#branding_dark: assets/dart_dark.png
# From Android 12 onwards, the splash screen is handled differently than in previous versions.
# Please visit https://developer.android.com/guide/topics/ui/splash-screen
# Following are specific parameters for Android 12+.
android_12:
2024-06-21 19:12:29 +00:00
# The image parameter sets the splash screen icon image. If this parameter is not specified,
# the app's launcher icon will be used instead.
# Please note that the splash screen will be clipped to a circle on the center of the screen.
# App icon with an icon background: This should be 960×960 pixels, and fit within a circle
# 640 pixels in diameter.
# App icon without an icon background: This should be 1152×1152 pixels, and fit within a circle
# 768 pixels in diameter.
2024-05-22 20:48:44 +00:00
image: images/cerdo_big.jpg
2024-06-21 19:12:29 +00:00
# Splash screen background color.
2024-05-22 20:48:44 +00:00
color: "#ffffff"
# App icon background color.
#icon_background_color: "#111111"
# The branding property allows you to specify an image used as branding in the splash screen.
#branding: assets/dart.png
# The image_dark, color_dark, icon_background_color_dark, and branding_dark set values that
# apply when the device is in dark mode. If they are not specified, the app will use the
# parameters from above.
#image_dark: assets/android12splash-invert.png
#color_dark: "#042a49"
#icon_background_color_dark: "#eeeeee"
# The android, ios and web parameters can be used to disable generating a splash screen on a given
# platform.
#android: false
#ios: false
#web: false