aves/pubspec.yaml
2021-03-09 19:35:33 +09:00

147 lines
5 KiB
YAML

name: aves
description: A visual media gallery and metadata explorer app.
repository: https://github.com/deckerst/aves
version: 1.3.5+41
environment:
sdk: '>=2.10.0 <3.0.0'
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
# `charts_flutter` not null safe, as of 2021/03/09 - https://github.com/google/charts/issues/579
charts_flutter:
collection:
connectivity:
# `country_code` not null safe, as of 2021/03/09 - unmaintained?
country_code:
# `decorated_icon` not null safe, as of 2021/03/09 - https://github.com/benPesso/flutter_decorated_icon/issues/2
decorated_icon:
event_bus:
# TODO TLAD merge null safe `expansion_tile_card` to fork
expansion_tile_card:
# path: ../expansion_tile_card
git:
url: git://github.com/deckerst/expansion_tile_card.git
firebase_core:
firebase_analytics:
firebase_crashlytics:
# TODO TLAD migrate to basic SnackBar or `another_flushbar`
# `flushbar` not null safe, as of 2021/03/09 - discontinued
flushbar:
flutter_highlight:
# `flutter_ijkplayer` not null safe, as of 2021/03/09 - unmaintained?
flutter_ijkplayer:
# path: ../flutter_ijkplayer
git:
url: git://github.com/deckerst/flutter_ijkplayer.git
flutter_localized_locales:
# `flutter_map` not null safe, as of 2021/03/09 - https://github.com/fleaflet/flutter_map/issues/829
flutter_map:
flutter_markdown:
flutter_staggered_animations:
flutter_svg:
# TODO TLAD migrate to `geocoding` (or reimplement) - https://github.com/Baseflow/flutter-geocoding/issues/37
# `geocoder` not null safe, as of 2021/03/09 - unmaintained? - https://github.com/aloisdeniel/flutter_geocoder/issues/61
geocoder:
github:
google_api_availability:
google_maps_flutter:
intl:
# `latlong` not null safe, as of 2021/03/09 - archived - migrate to maps_toolkit? cf https://github.com/fleaflet/flutter_map/pull/750
latlong:
material_design_icons_flutter:
# as of 2021/03/09, stable version 1.0.5 uses deprecated `ancestorWidgetOfExactType`
overlay_support: 1.2.0-nullsafety.0
package_info:
# `palette_generator` not null safe, as of 2021/03/09 - https://github.com/flutter/packages/pull/287
palette_generator:
# `panorama` not null safe, as of 2021/03/09 - no issue/PR
panorama:
pdf:
pedantic:
percent_indicator:
permission_handler:
# TODO TLAD upgrade printing to >=5 when `flutter_driver` dependency upgrade get on the right channel
# https://github.com/flutter/flutter/pull/75370
# https://github.com/flutter/flutter/blob/master/packages/flutter_driver/pubspec.yaml
# otherwise, we get this conundrum:
# every version of flutter_driver from sdk depends on crypto 2.1.5
# pdf >=3.0.1 depends on crypto ^3.0.0
# printing >=5.0.1 depends on pdf ^3.0.1
printing: 4.1.0
provider:
shared_preferences:
sqflite:
# `streams_channel` not null safe, as of 2021/03/09 - unmaintained? - no issue/PR
streams_channel:
tuple:
url_launcher:
version:
xml:
dependency_overrides:
# because of `charts_flutter`
intl: '>=0.17.0'
dev_dependencies:
flutter_test:
sdk: flutter
flutter_driver:
sdk: flutter
test:
flutter:
assets:
- assets/
generate: true
uses-material-design: true
################################################################################
# Localization
# language files:
# - /lib/l10n/app_{language}.arb
# - /android/app/src/main/res/values-{language}/strings.xml
# - /android/app/src/debug/res/values-{language}/strings.xml (optional)
# - /android/app/src/profile/res/values-{language}/strings.xml (optional)
# generate `AppLocalizations`
# % flutter gen-l10n
# list untranslated messages
# % flutter gen-l10n --untranslated-messages-file untranslated.json
################################################################################
# Test driver
# run (any device):
# % flutter drive -t test_driver/app.dart
# capture shaders in profile mode (real device only):
# % flutter drive -t test_driver/app.dart --profile --cache-sksl --write-sksl-on-exit shaders.sksl.json
################################################################################
# Package study
# brendan-duncan/image (as of v2.1.19):
# - does not support TIFF with JPEG compression (issue #184)
# - TIFF tile decoding is not public (issue #258)
# video_player (as of v0.10.8+2, backed by ExoPlayer):
# - does not support content URIs (by default, but trivial by fork)
# - does not support AVI/XVID, AC3
# - cannot play if only the video or audio stream is supported
# fijkplayer (as of v0.7.1, backed by IJKPlayer & ffmpeg):
# - support content URIs
# - does not support XVID, AC3 (by default, but possible by custom build)
# - can play if only the video or audio stream is supported
# - crash when calling `seekTo` for some files (e.g. TED talk videos)
# flutter_ijkplayer (as of v0.3.5+1, backed by IJKPlayer & ffmpeg):
# - support content URIs (`DataSource.photoManagerUrl` from v0.3.6, but need fork to support content URIs on Android <Q)
# - does not support AC3 (by default, but possible by custom build)
# - can play if only the video or audio stream is supported