一、问题详情:

在项目开发过程中,修改了下:


compileSdkVersion  和  targetSdkVersion   由原来版本的25 调整到 23,

26、Error:No resource identifier found for attribute 'roundIcon' in package 'android'


结果悲剧了,直接报这样的错误;

26、Error:No resource identifier found for attribute 'roundIcon' in package 'android'


二、问题原因:

经过分析:

在 AndroidManifest 文件中 application 节点下

 android:roundIcon="@mipmap/ic_launcher_round"

23版本是不支持 设置圆形icon,android:roundIcon 这个属性是 25 版本的新特性,


三、问题解决:

直接删除 android:roundIcon ,成功解决

26、Error:No resource identifier found for attribute 'roundIcon' in package 'android'



相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-07
  • 2021-06-03
猜你喜欢
  • 2021-11-01
  • 2021-06-26
  • 2022-02-11
  • 2021-06-17
  • 2021-10-19
  • 2022-01-06
  • 2021-07-11
相关资源
相似解决方案