Notifications Plugin

I spent most of yesterday fiddling with different notification plugins. I think I’ve almost got cordova-plugin-fcm-with-dependecy-updated working, but I also spent time with cordova-plugin-fcm (and it’s 356 open issues). Both of these exhibited some strange behavior (e.g. having to manually copy the .plist file into place in the platforms directory) which don’t inspire confidence. Is there a better choice?

Copying the .plist or .json can easly be done with this line in the config.xml (under the correct platform).
<resource-file src="credentials/GoogleService-Info.plist" target="GoogleService-Info.plist" />

<resource-file src="credentials/google-services.json" target="app/google-services.json" />

Thanks for the tip. I’ll add that.