我使用以下配置将项目ic_launcher
图标从drawable
更新为mipmap
:
旧项目:
drawable
- ic_launcher.png(5)
-- ic_launcher.png(hdpi)
-- ic_launcher.png(mdpi)
-- ic_launcher.png(xhdpi)
-- ic_launcher.png(xxhdpi)
-- ic_launcher.png(xxxhdpi)
清单android:icon="@drawable/ic_launcher"
新项目:
mipmap
- ic_launcher.png(5)
-- ic_launcher.png(hdpi)
-- ic_launcher.png(mdpi)
-- ic_launcher.png(xhdpi)
-- ic_launcher.png(xxhdpi)
-- ic_launcher.png(xxxhdpi)
清单:android:icon="@mipmap/ic_launcher"
在我的应用程序的新版本发布后,我感到非常惊讶,对新版本进行更新的用户拥有所有默认的android图标,而不是提供的应用程序图标。
如何使此转换有效?因为我使用了每个技巧而没有任何输出。