Android Studio Suddenly started to display unable to resolve com.android.support…25.0.0 error messages and all of my java files are erroneous now?

后端 未结 7 1948
花落未央
花落未央 2020-12-17 09:26

My project was working very fine, but until one day, when I uploaded my project to github. I don\'t know if this issue is related to that but today when I compiled my androi

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-17 10:18

    Facebook updated their SDK to use the latest support libraries. You could replace

    compile 'com.facebook.android:facebook-android-sdk:[4,5)'
    

    with

    compile 'com.facebook.android:facebook-android-sdk:4.16.1'
    

    if you do not want to update your android sdk just yet.

提交回复
热议问题