I have created a Portable class library while developing a windows store app. In that app I have used MvvmCross and PCl. Now I want to use same PCl in my Android app which I am developing on Xamarin studio but its not working as expected. It is giving me some exceptions related to MvxSimpleIoCContainer. I have added the referance of MVVMcross hot tuna starter package to my PCL and android app,Do I need to do anything else for using PCl and MVVMcross in Xamarin.Android app?
For hitting services in android we need to have internet enabled in emulators. Because of this issue PCL was not working in my android app. To enable those settings there is good link on stackoverflow
How to setup Android emulator proxy settings?
Also sqlite path needs to be passed from native platform because Isolated storage is platform dependent. My error was because of these issues.
Posting this answer after doing lot of R & D. I thought it could help other developers who are new in Xamarin.android.