Reputation: 124
I was following https://ionicframework.com/docs/native/fcm/ to integrate Firebase into my Ionic project. It was showing runtime error, not finding a Firebase provider.
Runtime error:
Upvotes: 3
Views: 6935
Reputation: 1089
This might be because you forgot to add it in your app module providers list.
Import it in your app.module.ts and add it to the providers list it should then work
import {FCM} from '@ionic-native/fcm'
@NgModule({
...
providers : [
...
FCM
]
})
Upvotes: 8