Matt Burland
Matt Burland

Reputation: 45135

MvxImageViewLoader and plugin

I was having trouble getting the MvxImageViewLoader to work when I came across this post:

MvxImageViewLoader binding not working

Which after reading and going back to the N+2 tutorial, I realized that I'd missed adding the File and DownloadCache plugins (this is why video tutorials are such a pain, impossible to skim). So I installed them via nuget, but now when I try and start my application, before the first view even loads, I get this exception:

System.MissingMethodException: Method not found: 'Cirrious.MvvmCross.Binding.Binders.MvxRegistryFillerExtensions.Fill'.

Any idea what I've missed now?

Upvotes: 0

Views: 280

Answers (1)

Stuart
Stuart

Reputation: 66882

Make sure all your nuget packages are from the same version.

MissingMethodException is most likely caused by having different versions in the same project.

Upvotes: 1

Related Questions