No resource found that matches the given name (at 'cardBackgroundColor' with value '?android:attr/colorBackgroundFloating')

前端 未结 7 1441
梦如初夏
梦如初夏 2021-01-03 20:42

I am getting these two error messages when trying to compile:

/Users/dericw/coding/myApplication/lfdate/android/app/build/intermediates/exploded-aar/com.andr         


        
7条回答
  •  醉酒成梦
    2021-01-03 21:33

    I also had this issue. I solved by forcing an older version of the card view library as the issue is with that.

    compile('com.android.support:cardview-v7:23.2.0') {
        force = true
    }
    

    The issue was with 23.2.1 of card view, the Facebook SDK uses this library.

提交回复
热议问题