当我想插入以下元标记时:
<meta-data
android:name="com.android.systemui.action_assist_icon"
android:resource="@mipmap/ic_launcher" />
我收到错误消息:
Resources referenced from the manifest cannot vary by configuration (except for version qualifiers, e.g. -v21.) Found variation in hdpi, mdpi, xhdpi, xxhdpi, xxxhdpi
我该如何解决这个问题?
答案 0 :(得分:17)
AndroidManifest.xml中的资源变化被检测为错误。
可能会被忽略:
<?xml version="1.0" encoding="utf-8"?>
<manifest ...
xmlns:tools="http://schemas.android.com/tools"
...>
...
<meta-data
android:name="com.android.systemui.action_assist_icon"
android:resource="@mipmap/ic_launcher"
tools:ignore="ManifestResource" />
...
</manifest>
答案 1 :(得分:0)
我将这些字符串移动到globalstrings.xml并从区域设置文件中删除了引用。