Capacitor plugin to enable features from Firebase Cloud Messaging
This plugin is intended to be used together with Capacitor API for Push Notifications. Capacitor only provides APN token whereas this plugin offers the possibility to work with FCM tokens and more.
method | info | platform |
---|---|---|
subscribeTo |
subscribe to fcm topic | ios/android |
unsubscribeFrom |
unsubscribe from fcm topic | ios/android |
getToken |
get fcm token to eventually use from a server | ios/android |
deleteInstance |
remove local fcm instance completely | ios/android |
import { FCM } from "capacitor-fcm";
const fcm = new FCM();
import { Plugins } from "@capacitor/core";
const { PushNotifications } = Plugins;
//
// Subscribe to a specific topic
PushNotifications.register()
.then(_ => {
fcm
.subscribeTo({ topic: "test" })
.then(r => alert(`subscribed to topic`))
.catch(err => console.log(err));
})
.catch(err => alert(JSON.stringify(err)));
//
// Unsubscribe from a specific topic
fcm
.unsubscribeFrom({ topic: "test" })
.then(r => alert(`unsubscribed from topic`))
.catch(err => console.log(err));
}
/**
* get remote token
*
* Recommended to use this instead of PushNotifications.addListener("registration", ...);
* because the native capacitor method, for apple, returns the APN's token
*/
fcm
.getToken()
.then(r => alert(`Token ${r.token}`))
.catch(err => console.log(err));
}
//
// remove local fcm instance completely
fcm
.deleteInstance()
.then(() => alert(`Token deleted`))
.catch(err => console.log(err));
}
Navigate to the project settings page for your app on Firebase.
Download the GoogleService-Info.plist
file. In Xcode right-click on the yellow folder named "App" and select the Add files to "App"
.
Tip: if you drag and drop your file to this location, Xcode may not be able to find it.
Download the google-services.json
file and copy it to android/app/
directory of your capacitor project.
ionic start my-cap-app --capacitor
cd my-cap-app
npm install --save capacitor-fcm
mkdir www && touch www/index.html
sudo gem install cocoapods
npx cap add ios
npx cap sync ios
npx cap open ios
- sign your app at xcode (general tab)
- enable remote notification capabilities
- add
GoogleService-Info.plist
to the app folder in xcode - turn
swizzling
off on app'sinfo.plist
<key>FirebaseAppDelegateProxyEnabled</key>
<false/>
Tip: every time you change a native code you may need to clean up the cache (Product > Clean build folder) and then run the app again.
ionic start my-cap-app --capacitor
cd my-cap-app
npm install --save capacitor-fcm
mkdir www && touch www/index.html
npx cap add android
npx cap sync android
npx cap open android
- add
google-services.json
to yourandroid/app
folder [extra step]
in android case we need to tell Capacitor to initialise the plugin:
on your
MainActivity.java
file addimport io.stewan.capacitor.fcm.FCMPlugin;
and then inside the init callbackadd(FCMPlugin.class);
Now you should be set to go. Try to run your client using ionic cap run android --livereload
.
Tip: every time you change a native code you may need to clean up the cache (Build > Clean Project | Build > Rebuild Project) and then run the app again.
https://github.com/stewwan/capacitor-fcm-demo
Cheers 🍻
Follow me @Twitter
MIT