我一直在尝试使用Nuget将Xamarin项目更新为更高版本的Xamarin,并且它会因缺少组件而失败,Nuget无法安装,因为缺少其他组件....
所以我认为无论如何我需要进行重大升级,我将从一个新的最新Xamarin项目开始,然后将代码迁移并进行更改。
除了我遇到一个完全空的新Xamarin项目的错误,我不知道如何修复它们。
我已经修好了VS 2017几次而没有运气。
错误与生成的Android styles.xml文件有关。这与旧项目中的相同,但不会给出错误。
<?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>
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette -->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#2196F3</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">#1976D2</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">#FF4081</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal. -->
<item name="windowActionModeOverlay">true</item>
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
</style>
<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
<item name="colorAccent">#FF4081</item>
</style>
</resources>
如下 - 只有前3个,都有错误:
3: error: Error: No resource found that matches the given name: attr 'colorAccent'.
1: error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'.
2: error: Error: No resource found that matches the given name: attr 'colorAccent'.
答案 0 :(得分:1)
对于遇到此问题的任何人,我发现了以下文章:
{{3}}
不知何故,这些设置在Visual Studio选项中未经检查,这意味着Nuget还原并未发生。
启用Nuget恢复功能后,它会自动下载缺少的组件,错误就会消失。