gpt4 book ai didi

android - 使用自适应图标时 Lint 中止

转载 作者:行者123 更新时间:2023-11-29 19:07:42 25 4
gpt4 key购买 nike

我试过Android8.0自适应图标。但是我在下面发现了 lint 错误...

src/main/res/mipmap-anydpi-v26/ic_launcher.xml: Error: 
Launcher icons must be in PNG format [IconLauncherFormat]


Explanation for issues of type "IconLauncherFormat":
Launcher icons should be in the PNG format. This requirement is enforced by
the The Google Play Developer Console.

https://developer.android.com/guide/practices/ui_guidelines/icon_design_launcher.html#size

如何解决?是否只能使用 LintOption 禁用?

请帮忙。谢谢。

最佳答案

您必须将此添加到 app/build.gradle 文件的 android 部分:

lintOptions {
lintConfig file("lint.xml")
}

然后,创建包含以下内容的文件 app/lint.xml:

<lint>
<issue id="IconLauncherFormat">
<ignore path="src/main/res/mipmap-anydpi-v26/ic_launcher.xml" />
</issue>
</lint>

关于android - 使用自适应图标时 Lint 中止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46585349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com