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图标,在手机上还是显示默认图标的主要内容,如果未能解决你的问题,请参考以下文章

hbuilderX开发安卓app怎么在手机上播放视频

Flutter App 发布更新后无法在手机上运行

如何利用android手机远程控制另一个android手机

如何利用android手机远程控制另一个android手机

为啥fildder对app抓包时在手机上操作了单在fildder上没有反应

是否可以在手机上远程构建和运行Android Studio应用?