为什么App Bundle中的APK在某些设备上没有启动器图标

时间:2019-11-09 20:55:15

标签: android bundle android-app-bundle

我们在Google Play上提供了该应用的Alpha版。最近,我们开始使用应用程序捆绑包,并且某些设备上似乎没有启动器图标。我们在清单中指定图标:

android:icon="@drawable/launcher_icon"

每种尺寸的hdpi,ldpi等都有launcher_icon。

1 个答案:

答案 0 :(得分:1)

启动器可能会与其他可绘制对象区别对待。因此,您应该改用mipmap。

android:icon="@mipmap/launcher_icon"

screen densities的培训在这方面说明:

  

与drawable目录不同,即使您构建密度特定的APK,所有mipmap目录也会保留在APK中。