Reputation: 3748
I create a blank Xamarin.Forms application
but I have some errors.
I get these 2 errors when Cross-Platform projects are loading:
Update : I have found the reason of this 1st error:
I didn't have been set the application and package name on the Android Manifest page.
And get this error on debug and cannot debug:
What could be the reasons of these?
Upvotes: 0
Views: 67
Reputation: 89082
2 clearly tells you that you are missing a Visual Studio update. Have you tried downloading the update like it suggests?
3 is because you are trying to execute a Library project, which is not allowed. You need to right click on your Droid project in Solution Explorer, and choose "Set as Startup Project". This will cause your Droid project to run by default.
Upvotes: 3