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

前端 未结 6 893
有刺的猬
有刺的猬 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:45

    I solve that problem by only modifying android/app/build.gradle file. You need to modify the compileSdkVersion and buildToolsVersion as follows.

    android {
      compileSdkVersion 25
      buildToolsVersion "25.0.1"
    

提交回复
热议问题