-
Notifications
You must be signed in to change notification settings - Fork 681
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Local notification is not showing in Android Oreo #1002
Comments
same issue |
+1 |
Looks like its not working if your targetSDKVersion is set to higher than 25 |
have you registered channels correctly? |
@evollu how to register it? |
I got the same issue and fix it by manually call What I did
And now it works |
I got caught out by this too - can we add @amallo's note to the README? |
added a comment to the example project |
My Paylod
FCM.presentLocalNotification({
title:'Welcome to Reno',
body: "Enjoy Discount Upto 50 Percent off",
priority: "high",
show_in_foreground: true,
local: true,
channel: "any_id"
});
The text was updated successfully, but these errors were encountered: