xamarin - How to resolve IMvxApplication (which inheritor is defined in separate assembly (not Core one))? -
i have usual myapp.core project. however, have general.core project includes general code apps , services shared through different projects (different mobile applications).
in general.core project have:
public abstract class app : mvxapplication
and service defined on general.core.
i have
public abstract class somethingapp : app
in myapp.core (and in every of touch, droid - further inheritance).
however, when try app service of general.core project (the same app) that:
mvx.resolve<imvxapplication>()
i 'cannot resolve' exception. sure that's because of types names , different assemlies, don't know , how should register (if should) app, because it's not common service.
thank you!
Comments
Post a Comment