Michael Bui
Michael Bui
I can't reproduce this with the example app. Can you provide a link to repository hosting a minimal app that can reproduce the issue?
@bitscoper this is a bit of a weird one. The build error is happening due to no code calling [this method](https://pub.dev/documentation/flutter_local_notifications/latest/flutter_local_notifications/FlutterLocalNotificationsPlatform/getNotificationAppLaunchDetails.html). I don't know if there's a better way to...
@bitscoper I'd suggest getting help from others on this one and posting about this on the Flutter repo may help. I can't tell what the issue is here but what...
I can't help more on this as I was able build the app locally without obfuscation. The other unrelated advice to give you is improving on how you structure your...
Regarding what I did for https://github.com/firebase/flutterfire/pull/1829/files, I'm not sure what I did there is still in play as I've not looked into that plugin's code in great depth since invertase...
> This would require the FlutterPlugin iOS class to intercept calls to UNUserNotificationCenter.current().add(...) and attach an identifier, such as a special userInfo entry. I don't know Obj-C or Swift well...
Sorry didn't end up coming back this. I'll close this as it looks like you were able to solve the issue. Regarding what you shared in your last message, thanks...
Not done testing on this but inclined to agree with @leaf-node and removing it seems more risky. I would suggest making this a required parameter. This way developers spend some...
@leaf-node thanks for the response. Based on my understanding, my preference would be to avoid removing the functionality as there could be cases where there are existing apps that choose...
> @MaikuB The use case for my app is to fetch server alert statuses from third-party remote servers, and to notify the user if a new alert is found. I'm...