This may be related to this or this.
But it seems like those solutions didn't solve this error for me.
This is the XML
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="MyTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">#2196F3</item>
<item name="drawerArrowStyle">@style/MyDrawerArrowStyle</item>
</style>
<style name="MyDrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">#F5F5F5</item>
<item name="spinBars">true</item>
</style>
</resources>
Yes I've got the references to the Xamarin.Android.Support.v4 and Xamarin.Android.Support.v7.AppCompat dll's.
Really weird because when my project is in Debug mode it runs without giving me any error. This error only occurs when it's in Release mode and I try to create an APK file for mobile testing.
