This is my first attempt at Xamarin, just running through the examples at Xamarin.com.
But I\'m getting this error when I try to build. It\'s strange because I can s
The solution:
- Change all "Icon.png" names into mipmap folders to "icon.png".
- Clean project
- Re-open Visual Studio
- Select "@mipmap/icon" in "Application Icon" in AndroidManifest.
Here's a workaround. Go into assemblyinfo.cs (it's in the Properties folder in your project) and add the following line in there:
[assembly: Application(Icon = "@mipmap/icon")]