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',這個多半就是自己定義的控件在應用的時候出了問題。
from ?http://blog.csdn.net/androidfszl/article/details/61919384