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

前端 未结 6 1391
野趣味
野趣味 2020-11-30 02:58

I received these errors when i started new project in android studio.

Error:(1) Error retrieving parent for item: No resource found that matches the g

6条回答
  •  我在风中等你
    2020-11-30 03:31

    I found it, I was trying to compile my app which is using facebook sdk. I was made that like augst 2016. When I try to open it today i got same error. I had that line in my gradle " compile 'com.facebook.android:facebook-android-sdk:4.+' " and I went https://developers.facebook.com/docs/android/change-log-4x this page and i found the sdk version while i was running this app succesfully and it was 4.14.1 then I changed that line to " compile 'com.facebook.android:facebook-android-sdk:4.14.1' " and it worked.

提交回复
热议问题