void TokenError(object sender, PushwooshPlugin.TokenErrorEventArgs events)
	{
		FailedToRegisteredForPushNotifications (events.ErrorMessage);
	}
	void PushReceived(object sender, PushwooshPlugin.PushEventArgs events)
	{
		PushNotificationsReceived (events.PushPayload);
	}
	void TokenReceived(object sender, PushwooshPlugin.TokenEventArgs events)
	{
		RegisteredForPushNotifications (events.Token);
	}