-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpubspec.yaml
More file actions
78 lines (66 loc) · 2.35 KB
/
pubspec.yaml
File metadata and controls
78 lines (66 loc) · 2.35 KB
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
name: firebase_messaging_handler
description: "Production-ready Firebase Cloud Messaging for Flutter with a unified click stream, notification inbox, in-app messaging, diagnostics, badges, and scheduling."
version: 1.0.4
homepage: https://qoder.in/resources/firebase-messaging-handler
repository: https://github.com/qoder-official/firebase_messaging_handler
issue_tracker: https://github.com/qoder-official/firebase_messaging_handler/issues
documentation: https://github.com/qoder-official/firebase_messaging_handler#readme
environment:
sdk: ">=3.5.0 <4.0.0"
flutter: ">=3.3.0"
dependencies:
flutter:
sdk: flutter
# Firebase core and Cloud Messaging
firebase_core: ">=3.0.0 <5.0.0"
firebase_messaging: ">=16.0.4 <17.0.0"
# Local notifications for scheduling and custom handling
flutter_local_notifications: "^21.0.0"
# Persistent storage for configuration and caching
shared_preferences: ">=2.0.0 <3.0.0"
# Web platform support
flutter_web_plugins:
sdk: flutter
# Timezone handling for scheduled notifications
timezone: ">=0.10.1 <1.0.0"
# HTML widget support for rich content
flutter_widget_from_html_core: ">=0.17.0 <1.0.0"
# Badge management for Android & iOS (using flutter_local_notifications)
# flutter_app_badger: ">=1.5.0" # Removed due to namespace issues
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ">=6.0.0"
alchemist: ">=0.13.0"
integration_test:
sdk: flutter
googleapis_auth: ">=2.0.0 <3.0.0"
http: ">=1.0.0 <2.0.0"
topics:
- fcm
- firebase-messaging
- push-notifications
- in-app-messaging
- local-notifications
# Platform-specific configuration
flutter:
uses-material-design: true
plugin:
platforms:
android:
package: in.qoder.firebase_messaging_handler
pluginClass: FirebaseMessagingHandlerPlugin
ios:
pluginClass: FirebaseMessagingHandlerPlugin
macos:
dartPluginClass: FirebaseMessagingHandlerMacos
fileName: firebase_messaging_handler_macos.dart
linux:
dartPluginClass: FirebaseMessagingHandlerLinux
fileName: firebase_messaging_handler_linux.dart
windows:
dartPluginClass: FirebaseMessagingHandlerWindows
fileName: firebase_messaging_handler_windows.dart
web:
pluginClass: FirebaseMessagingHandlerWeb
fileName: firebase_messaging_handler_web.dart