Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Colored'

前端 未结 6 882
有刺的猬
有刺的猬 2021-01-08 01:11

Today, I face the error mentioned in this post: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.B

6条回答
  •  离开以前
    2021-01-08 01:54

    actually there is some dependencies problem i have faced same but i resolved it by applying these version mismatch changes :

    compileSdkVersion 24
    buildToolsVersion '24.0.3'
    
    compile 'com.android.support:appcompat-v7:23.0.1'
    

    make sure these version are same API. Means that if you are using 24 API to build then appcompat-v7 should be 24.0.+ something.

提交回复
热议问题