# Creating the Android project

Create a new Blank Android project into the solution (do not select the Android XAML App template) and name it as `MvvmCrossDemo.Droid`, like this:

![](https://847068821-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LPK_0Nj6gmm5SSTHfcs%2F-LPP9KguQOFOGTk-1jkL%2F-LPP9VEqdxA7hjxwuJ5d%2Fimage.png?alt=media\&token=7df5db71-f84a-4128-bc6d-70f5d8b5828b)

Pay attention on the different project templates. There are a couple of different templates here. Notice that we need the Android App (Xamarin), not the Android XAML App (Xamarin.Forms). I will describe `Xamarin.Forms` in the next sections, but not now.

The default Android target version is Android 8.1 (Oreo). If you need to edit it, right click the `MvvmCrossDemo.Droid` project and select Properties, then choose Application Tab, and update the Target Framework like this:

![](https://847068821-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LPK_0Nj6gmm5SSTHfcs%2F-LPP9KguQOFOGTk-1jkL%2F-LPP9iQ5FOw8bnOyyxEW%2Fimage.png?alt=media\&token=0ec5ff77-5715-4a21-a5bd-c653f94cfc06)

Delete the `MainActivity.cs` in the root folder and the `Main.axml`in the resource/Layout folder. We do not need them.

Then install the `MvvmCross` package like we did in the `MvvmCrossDemo.Core` project. We also need to add the reference to the `MvvmCrossDemo.Core` project. You might encounter an error that is:

> You need to add a reference to Mono.Android.Export.Dll when you use ExportAttribute or ExportFieldAttribute.

To fix it, we need to add the reference to `Mono.Android.Export` by Reference Manager:

![](https://847068821-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LPK_0Nj6gmm5SSTHfcs%2F-LPP9KguQOFOGTk-1jkL%2F-LPPAWTQWnpzpqkqy067%2Fimage.png?alt=media\&token=0a35ea26-29ee-4127-9ec3-c1d6e5d4fa0c)
