【发布时间】:2017-11-10 17:37:43
【问题描述】:
我刚刚使用 android studio 中的Image Asset Studio 将我的应用图标转换为与 android o 的自适应图标兼容
当我现在在运行 API 25 的设备上运行我的项目时,我得到了默认的绿色 android 图标,而不是我的图标。
这是我的清单
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:allowBackup="false"
android:roundIcon="@mipmap/ic_launcher_round"
tools:replace="allowBackup"
tools:ignore="GoogleAppIndexingWarning">
这些是图像资产工作室创建的文件
这只是一个 Android Studio 错误还是我遗漏了什么?
【问题讨论】:
-
这里也一样。你解决了吗?
-
对我来说,解决方案是改变启动器的主题,它已经改变了开发图标。
标签: android android-studio android-icons