Android 错误 'roundIcon' in package 'android'

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

roundIcon是个高版本里面才有的东东,低版本是没有的,一般是由于调节targetSdkVersion版本造成的

解决办法:

删除清单文件AndroidManifest.xml里的 android:roundIcon="@mipmap/ic_launcher_round" 这句话就OK了

只要看到Error:No resource identifier......,肯定是xml文件里面出问题了,盯着找就好了

如果是in package 'XXX',这个多半就是自己定义的控件在应用的时候出了问题。

你可能感兴趣的:(Android 错误 'roundIcon' in package 'android')