Android 中更改了默认app图标,在手机上还是显示默认图标
Posted 黄毛火烧雪下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 中更改了默认app图标,在手机上还是显示默认图标相关的知识,希望对你有一定的参考价值。
注意
启动图标名称勿用默认名称,改为自定义的名称,比如ic_launcher_k,ic_launcher_自定义,防止启动图标找到第三方引用的图标,导致不是想要的logo
<application
android:name=".KApplication"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher_k"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_k"
android:supportsRtl="true"
android:theme="@style/AppTheme.Default"
tools:ignore="GoogleAppIndexingWarning"
tools:replace="android:allowBackup,android:theme"
android:usesCleartextTraffic="true"
tools:targetApi="n">
</application>
以上是关于Android 中更改了默认app图标,在手机上还是显示默认图标的主要内容,如果未能解决你的问题,请参考以下文章