Android EditText Binding is broken after MvvmCross update from 4.2.3 to 4.4.0 with Linker enabled
My MvvmCross Android app which was working before now is broken because of MvvmCross update from 4.2.3 to 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 if of course there: 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