资源错误 Xamarin.Forms(意外元素和歧义)
Resource error Xamarin.Forms (unexpected element & Ambiguity)
我的 AndroidManifest 中突然出现错误
"APP.Android\obj\Debug0\android\manifest\AndroidManifest.xml19"
另外(已解决 - 搞砸了 DevExpress)
'Resource.Layout' 和 'Resource.Layout' 之间的歧义“APP.Android\MainActivity.cs 25 Active”
它之前工作正常,我这里没有做任何更改:
TabLayoutResource = Resource.Layout.CustomTabbar;
已经删除了bin和obj文件夹和clean/rebuild解决方案,但是错误依然存在。
Resource
AndroidManifest.xml
For the error (unexpected element queries found in manifest
) in your
AndroidManifest.xml
.
从文档Query & Interact with Apps in Android 11 with Package Visibility中,我们可以发现queries
元素是Android11的一个特性,因此您可以尝试将您的nuget更新到最新版本并更改您的将 Target Framework
投影到 Android 11,然后重试。
我的 AndroidManifest 中突然出现错误 "APP.Android\obj\Debug0\android\manifest\AndroidManifest.xml19"
另外(已解决 - 搞砸了 DevExpress) 'Resource.Layout' 和 'Resource.Layout' 之间的歧义“APP.Android\MainActivity.cs 25 Active”
它之前工作正常,我这里没有做任何更改:
TabLayoutResource = Resource.Layout.CustomTabbar;
已经删除了bin和obj文件夹和clean/rebuild解决方案,但是错误依然存在。
Resource
AndroidManifest.xml
For the error (
unexpected element queries found in manifest
) in yourAndroidManifest.xml
.
从文档Query & Interact with Apps in Android 11 with Package Visibility中,我们可以发现queries
元素是Android11的一个特性,因此您可以尝试将您的nuget更新到最新版本并更改您的将 Target Framework
投影到 Android 11,然后重试。