fitrizr
fitrizr

Reputation: 21

Step using Firebase Cloud Messaging Plugin in ionic framework

I want to get a notification for my ionic application (android & ios).I want to use Firebase Cloud Messaging. Did I need to install only Cordova-FCM-plugin or I need to install another plugin too like Cordova-firebase-plugin and PhoneGap-plugin-push. How about firebase firestore-plugin? did I need to install it too?

I already build apps and install Cordova-FCM-plugin then run the apps but can't get the firebase token. Get this error:

Error: exec proxy not found for :: FCMPlugin :: registerNotification

Upvotes: 0

Views: 1644

Answers (3)

Priyank Gujarati
Priyank Gujarati

Reputation: 191

You need to change in below file : “AppDelegate+FCM”

Where you can find the below method: customDidFinishLaunchingWithOptions

Please replace below :

[FIRApp configure];

    with this

 // [START configure_firebase]
    if(![FIRApp defaultApp]){
        [FIRApp configure];
    }

Upvotes: 1

Agha Ali Abbas
Agha Ali Abbas

Reputation: 195

You can use OneSignal or cordova-plugin-push, If you decide to use cordova push plugin then follow this link https://github.com/phonegap/phonegap-plugin-push

otherwise i would recommend you use onesignal for sending and recieveing push notifications https://github.com/OneSignal/OneSignal-Cordova-SDK

Upvotes: 1

neeraj Saxena
neeraj Saxena

Reputation: 53

Go through this tutorial if you want to send push notifications using firebase - Firebase notifications in Ionic. Also, refer to the official ionic documentation for the same. Official documentation

Upvotes: 1

Related Questions