Bengi Besceli
Bengi Besceli

Reputation: 3748

Could not create Xamarin.Forms application

I create a blank Xamarin.Forms application
but I have some errors.

I get these 2 errors when Cross-Platform projects are loading: enter image description here
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.

enter image description here

And get this error on debug and cannot debug: enter image description here

What could be the reasons of these?

Upvotes: 0

Views: 67

Answers (1)

Jason
Jason

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

Related Questions