[android] fix binding warnings from FormsViewGroup (#1117)
Building Xamarin.Forms gives warnings such as: ``` BINDINGSGENERATOR (0, 0) BINDINGSGENERATOR(0,0): Warning BG8800: Unknown parameter type System.Xml.XmlReader in method CreateFromXml in managed type Android.Content.Res.ColorStateList. BINDINGSGENERATOR (0, 0) BINDINGSGENERATOR(0,0): Warning BG8800: Unknown parameter type System.Xml.XmlReader in method CreateFromXml in managed type Android.Content.Res.ColorStateList. BINDINGSGENERATOR (0, 0) BINDINGSGENERATOR(0,0): Warning BG8800: Unknown parameter type System.Xml.XmlReader in method ParseBundleExtras in managed type Android.Content.Res.Resources. BINDINGSGENERATOR (0, 0) BINDINGSGENERATOR(0,0): Warning BG8800: Unknown parameter type System.Xml.XmlReader in method CreateFromXml in managed type Android.Graphics.Drawables.Drawable. ``` For now you can just add a reference to System.Xml to fix this.
This commit is contained in:
Родитель
dd662f4041
Коммит
ac80d35bf3
|
@ -52,6 +52,7 @@
|
|||
<Reference Include="Mono.Android" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\Xamarin.Forms.Core\Properties\GlobalAssemblyInfo.cs">
|
||||
|
|
Загрузка…
Ссылка в новой задаче