I'm trying Xamarin Live Player, using Visual Studio 2017 Preview 3, following this link to setup: https://developer.xamarin.com/guides/cross-platform/live/install/. It seems to work for simple apps. However:
- I couldn't get the
DependencyService
to work, it just couldn't resolve the dependencies, registered by adding[assembly: Dependency(typeof(implementorType))]
attributes on the implementation classes. - Furthermore, in iOS apps, when I placed a break point in
AppDelegate -> FinishedLaunching
event, the break point seems to be unreachable, could that be the reason that has caused theDependencyService
broken?