RidClick
RidClick
Actually what is needed in your case would be a function to recover a user's subscriptions by Token. From my point of view your solution would be to save in...
I understand then that you allow the end users to generate the name of the topic so that they subscribe? If this is the case, then you should control the...
I understand, the only thing I can tell you then is that you could still take a look at the OneSignal plugin that is much more complete with respect to...
You must add the icon in your config.xml like ` `
Greeatings The icons who's the plugin expect should be .png and with different sizes. I can't find now where I saw the docs about this but here is my example:...
There is not about the plugin is about a preference in your config.xml try adding ``
Don't forget update your cocoapods before add platform ios `pod repo update` on your app folder then add platform ios
The getInitialPushPayload only load if the app has a notification that was erased from notification center. Try whit ` this.fcm.getInitialPushPayload().then(data => { if(data != null) { // show data }})...
try `pod repo update` before add platform ios then add platform and `ionic cordova prepare ios` finally build
You forgot platform ready declare platform in the constructor ```typescript this.platform.ready().then(() => { this.fcm.getToken().then(token => { // Save token }) .catch(e => console.log('ErrorGetTocken', e)) }) .catch(e => console.log('ErrorInitFCM', e)) ```