Reputation: 153
It seems one cannot add the Azure Mobile Services NuGet package to a "Project.Core" of a MvvmCross project that targets IOS, Android, Windows Phone and Windows Store. It is not a PCL library it seems. What's the alternative? Define a Service interface in the "Core" project, that gets implemented on each subsequent platform?
Anyone has a working example of this, or other alternative?
Thanks in advance!
Upvotes: 2
Views: 413
Reputation: 24460
MvvmCross has something called Plugins, which consists of multiple parts:
There are loads of plugins you can look at how are implemented here: https://github.com/MvvmCross/MvvmCross/tree/v3.1/Plugins
There is documentation about how plugins work here: https://github.com/MvvmCross/MvvmCross/wiki/MvvmCross-plugins
Upvotes: 2