I created a new pcl xamarin forms application, using vs.net 2015. I have the latest stable release. What are the steps to just get the project to build. I had to update ios project, that seemed to build ok, however the android project is much more troublesome.
I nuget'd xamarin.forms 2.0 and that brought in xamarin.android.support.v4, xamarin.android.support.v7.cardview etc. (=23.0.1.3) and as a result i had a number of the following errors.
Error CS0117 'Resource' does not contain a definition for 'Styleable' XamarinSample2.Droid ...XamarinSample2\XamarinSample2.Droid\Resources\Resource.Designer.cs 1486
I then proceeded to update the xamarin.android support/cardview etc. libraries now i have the following errors
Severity Code Description Project File Line
Error Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'. XamarinSample2.Droid ...XamarinSample2\XamarinSample2.Droid\obj\Debug\resourcecache\33BEDCE94B8E7FEA2C04015EA5144E88\res\values-v23\values-v23.xml 25
Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
Are there a clear instruction(s) on how to get a new xamarin forms project android/ios running with xamarin.forms 2.0? I am missing something here.