I recently reinstalled Xamarin after the install of Win10 on my computer.
As always, installing Xamarin and launching a basic Xamarin.Forms app won't work, you need to get some troubles and here are mine :
No resource found that matches the given name: attr 'windowNoTitle'.
No resource found that matches the given name: attr 'colorPrimary'.
No resource found that matches the given name: attr 'windowActionBar'.
Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'. No resource found that matches the given name: attr 'colorPrimaryDark'.
No resource found that matches the given name: attr 'colorAccent'.
No resource found that matches the given name: attr 'colorAccent'.
No resource found that matches the given name: attr 'windowActionModeOverlay'. Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.Dialog'.
I've read several topics that said you need to change the min SDK version to this:
<uses-sdk android:targetSdkVersion="23" android:minSdkVersion="23" />
and have all packets up to date in Android SDK Manager (it's the case too).
But I still get the errors.
Any hint what to change in order to get my basic app working?
EDIT styles.xml exists and looks like :
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MainTheme" parent="MainTheme.Base">
</style>
<!-- Base theme applied no matter what API -->
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="windowActionBar">false</item>
[...]