hey 👋, whats the stacktrace for the crash?
Hello, thanks for the quick response. Please, check my codes below.
main.dart
notification_service.dart
AndroidManifest.xml
Resource files for push notification icon
❯ tree android/app/src/main/res/ android/app/src/main/res/ ├── drawable │ ├── background.png │ ├── ic_stat_notification.png │ └── launch_background.xml ├── drawable-hdpi │ ├── android12splash.png │ ├── ic_stat_notification.png │ └── splash.png ├── drawable-mdpi │ ├── android12splash.png │ ├── ic_stat_notification.png │ └── splash.png ├── drawable-night-hdpi │ ├── android12splash.png │ └── ic_stat_notification.png ├── drawable-night-mdpi │ ├── android12splash.png │ └── ic_stat_notification.png ├── drawable-night-xhdpi │ ├── android12splash.png │ └── ic_stat_notification.png ├── drawable-night-xxhdpi │ ├── android12splash.png │ └── ic_stat_notification.png ├── drawable-night-xxxhdpi │ ├── android12splash.png │ └── ic_stat_notification.png ├── drawable-v21 │ ├── background.png │ └── launch_background.xml ├── drawable-xhdpi │ ├── android12splash.png │ ├── ic_stat_notification.png │ └── splash.png ├── drawable-xxhdpi │ ├── android12splash.png │ ├── ic_stat_notification.png │ └── splash.png ├── drawable-xxxhdpi │ ├── android12splash.png │ ├── ic_stat_notification.png │ └── splash.png ├── mipmap-hdpi │ ├── ic_launcher.png │ └── launcher_icon.png ├── mipmap-mdpi │ ├── ic_launcher.png │ └── launcher_icon.png ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── launcher_icon.png ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── launcher_icon.png ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── launcher_icon.png ├── raw │ ├── keep.xml │ └── notification_sound.wav ├── values │ └── styles.xml ├── values-night │ └── styles.xml ├── values-night-v31 │ └── styles.xml └── values-v31 └── styles.xml
23 directories, 46 files
Logs:
this doesn't really give the logs or any specific info of the ANR due to push notifications. Could be related to FCM and not Appwrite.
Recommended threads
- Functions not executing after usage rese...
Hi team, Last month my project hit 100% usage and functions stopped working (expected). Now the new month has started and usage has reset, requests are going ...
- Functions never end and always fail (sta...
Hi ! I'm using Appwrite Cloud Pro and function execution from appwrite website is KO. Deploying starter function template, execution is always Failed and the ...
- My function executions console if overwh...
It seems the requests are getting processed correctly but it is using a older version of the backend. And it seems the cron requests done an hour ago are shown ...