A ligação EditText do Android é interrompida após a atualização do MvvmCross de 4.2.3 para 4.4.0 com o Linker ativado

Meu aplicativo MvvmCross para Android que estava funcionando antes agora está quebrado por causa da atualização do MvvmCross de 4.2.3 para 4.4.0

<EditText
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   local:MvxBind="Text Login" />

public string Login
{
    get { return _login; }
    set { SetProperty(ref _login, value); }
}

LinkerPleaseInclude se, é claro, lá:

public void Include(EditText text)
        {
            text.Enabled = !text.Enabled;
            text.TextChanged += (sender, args) => text.Text = "" + text.Text;
            text.Hint = "" + text.Hint;
            text.Click += (s, e) => text.Visibility = text.Visibility - 1;
        }

        public void Include(TextView text)
        {
            text.TextChanged += (sender, args) => text.Text = "" + text.Text;
            text.Hint = "" + text.Hint;
            text.Click += (s, e) => text.Text = text.Text + "";
        }

Vinculador "Apenas SDK" ativado. Para o vinculador desativado, funciona bem. Outras ligações também funcionam bem (cliques no botão, visibilidades etc.).

Como dizer ao vinculador para lidar com isso corretamente? Oque pode estar errado aqui?

questionAnswers(1)

yourAnswerToTheQuestion