How to make notifications with flutter without using firebase? I am using laravel for the backend and phpmyadmin for the database.
You can use AWS Amplify for push notifications,
check out this link.
https://aws.amazon.com/blogs/messaging-and-targeting/getting-started-with-push-notifications-using-aws-amplify/
Related
We are developing an app using Laravel 8.3 for back-end, our boss is forcing as to keep all of our (3dr pray services) as less as possible, so most of the services that we need can be provided by Google & firebase.
we have a real-time chat inside the app.
Now the question:
Can we replace Pusher with Google cloud messaging for push notification?
will the (online/offline) and (seen/read) be as good as pusher?
if yes, what driver to use inside the .env file?
Thank you
I have Laravel project and I need to seed notifications from web to mobile (android,iOS) via API, a lot of recommendations goes to Firebase FCM (Firebase Cloud Messaging), but I have a question: can I use FCM of Firebase without using the DB of Firebase just unsing my own DB which is MYSQL ?
Yes, you can use Firebase Cloud Messaging without using any of the other Firebase products.
Just call the FCM REST API from your code, or use the Firebase Admin SDK, after reading the relevant data from your MySQL database.
I'm trying to create desktop app with Flutter. I'm using Laravel as backend with Pusher notifications. What is the best way to integrate Pusher notifications in the Flutter desktop app?
I need some help. We have an app build with React Native that communicates with API that is build on Laravel. For push notifications we used One Signal. It works great, no problems there. The only issue we have is how can we know if user has push notifications enabled for our app? Is there any way that through One Signal we can check this one out?
Any help will be highly appreciated.
found this post similar to:
How can i check push notification permission for both ios and android in react native?
get the permission status then update to server using api from laravel.
How to manage Push Notification from Web API to Android App using Firebase?
I have a web application,and want a Push Notification, while any changes on web application database then it will show a notification to my android app.
How to do this?
Check this link https://forums.xamarin.com/discussion/89731/how-to-implement-fcm-in-xamarin-forms I followed this for my app and worked perfectly!