facebook api version used in facebook android sdk

前端 未结 4 1992
半阙折子戏
半阙折子戏 2020-12-15 23:03

I\'m getting the following alerts on Facebook Developers:

\'MyApp currently has access to Graph API v2.2 which will reach the end of its 2-year lifetime on 27 March,

4条回答
  •  臣服心动
    2020-12-15 23:45

    The current, latest version of the Graph API is v2.8 and SDK version is 4.19.0. you should have upgrade it.

    Add the compile dependency with the latest version of the Facebook SDK in the build.gradle file

    dependencies { 
         compile 'com.facebook.android:facebook-android-sdk:4.+'
    }
    

    Can see reference link-

    • developers.facebook.com/docs/android/getting-started/

    • developers.facebook.com/docs/graph-api.

提交回复
热议问题