###今天在构建项目时,出现了一个bug:
#####Error:No resource identifier found for attribute 'roundIcon' in package 'android'
#####Error:Execution failed for task ':app:processDebugResources'.
#####> com.android.ide.common.process.ProcessException: Failed to execute aapt
困扰了我很长时间,终于找到了解决之法。roundicon是android7.1出现的东西,用AndroidStudio创建应用时在7.1的SDK的下会在带icon![](http://i.imgur.com/3DjDLGC.png)
#####多一行
#####android:roundIcon="@mipmap/ic_launcher_round"
#####删除重新clean一下工程,就可以了
网友评论