private void HandleRegistration(Context context, Intent intent)
        {
            var token = intent.GetStringExtra("registration_id");

            _logger.Info(this.Class.SimpleName, "Received Token : " + token);
            if (_pushNotificationRegister.ShouldSendToken(token))
            {
                var uid = Android.Provider.Settings.Secure.GetString(MainActivity.Context.ContentResolver, Android.Provider.Settings.Secure.AndroidId);
                _notificationService.AddPushToken(token, DeviceUtils.GetDeviceType(), uid);
            }
        }