-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
pubspec.yaml
84 lines (77 loc) · 2.09 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: 'just_another_workout_timer'
version: '1.13.0'
environment:
sdk: '>=3.4.0'
description: Just Another Workout Timer
dependencies:
collection: '^1.18.0'
dynamic_color: '^1.7.0'
flutter:
sdk: flutter
flutter_file_dialog: '^3.0.2'
flutter_localizations:
sdk: flutter
flutter_native_splash: '^2.4.0'
flutter_phoenix: '^1.1.1'
flutter_tts: '^4.0.2'
fluttertoast: '^8.2.5'
intl: '^0.19.0'
json_annotation: '^4.9.0'
numberpicker: '^2.1.2'
path: '^1.8.0'
path_provider: '^2.1.3'
pref: '^2.8.0'
prefs: '^4.1.0+3'
provider: '^6.1.2'
scrollable_positioned_list: '^0.3.8'
share_plus: '^9.0.0'
soundpool: '^2.4.1'
url_launcher: '^6.2.6'
uuid: '^4.4.0'
wakelock_plus: '^1.2.5'
dev_dependencies:
build_runner: '^2.4.11'
flutter_launcher_icons: '^0.13.1'
flutter_lints: '^4.0.0'
flutter_oss_licenses: '^3.0.2'
intl_utils: '^2.8.7'
json_serializable: '^6.8.0'
pubspec_dependency_sorter: '^1.0.5'
flutter:
uses-material-design: true
generate: false
assets:
- LICENSE
- 'assets/beep_low.wav'
- 'assets/beep_high.wav'
- 'assets/tick.wav'
flutter_icons:
android: 'launcher_icon'
ios: false
image_path: 'assets/ic_launcher.png'
adaptive_icon_foreground: 'assets/ic_launcher_foreground.png'
adaptive_icon_background: '#2E3440'
flutter_intl:
enabled: true
flutter_native_splash:
color: '#D8DEE9'
color_dark: '#2E3440'
image: 'assets/ic_launcher_foreground.png'
fullscreen: true
android_gravity: center
android: true
ios: false
web: false
android_12:
color: '#D8DEE9'
icon_background_color: '#D8DEE9'
color_dark: '#2E3440'
icon_background_color_dark: '#2E3440'
script_runner:
scripts:
- licenses: dart pub run flutter_oss_licenses:generate.dart
- translations: dart run intl_utils:generate
- launcher_icons: flutter pub run flutter_launcher_icons
- native_splash: flutter pub run flutter_native_splash:create
- build_runner: dart run build_runner build --delete-conflicting-outputs
- build: scr licenses && scr translations && scr launcher_icons && scr native_splash && scr build_runner