iOS Push permission is now manually triggered
On iOS, first run doesn't automatically request Push permission.
This change allows the user to get used to the app before being asked about receiving notifications.
The permission, as it is still required, may now be requested from javascript at any moment by executing:
//FCMPlugin.requestPushPermissionIOS( successCallback(), errorCallback(err) );
FCMPlugin.requestPushPermissionIOS();Special thanks to @loama, for requesting this feature.