Unable to configure Facebook SDK in eclipse

前端 未结 4 1437
伪装坚强ぢ
伪装坚强ぢ 2021-01-17 01:35

I did all the steps according to the facebook tutorial on how to configure the facebook SDK, and without any luck, also tried the github configuration as shown Android Faceb

相关标签:
4条回答
  • 2021-01-17 02:15

    I was trying to get started using Facebook's SDK for Android with Eclipse and couldn't get it to work. After trying different things here is the solution that consistently works:

    1) Import (File->Import->Existing Android Code Into Workspace) just the Facebook SDK folder alone (PATH\facebook-android-sdk-3.0.1). (Do not check the copy to workplace)

    2) Import (i.e. PATH\facebook-android-sdk-3.0.1\samples\ProfilePictureSample) just one of the sample projects (for now). I will be using ProfilePictureSample as an example

    As you can see, Eclipse throws errors saying that it doesn't know what FragmentActivity in ProfilePictureSampleActivity. FragmentActivity is part of the android support library. If you take a look at the package explorer, there is not a libs folder or any reference to the android support lirbary; It is on the FacebookSDK library. We need to tell Eclipse to export it.

    4) Right-Click on the FacebookSDK library then click on properties. On the left menu go to Java Build Path. Then under the Order and Export tab check Android Private Libraries (you can also click on the android-supportv4-jar instead).

    5) Project->Clean

    Now for some reason (maybe somebody can elaborate on this), the sample project also needs to export the android support library.

    6) Right-Click on the sample project (i.e. ProfilePictureSample) then click on properties. On the left menu go to Java Build Path. Then under the Order and Export tab check Android Private Libraries.

    7) Project->Clean

    Hopefully this helps!!

    0 讨论(0)
  • 2021-01-17 02:16

    please set the Android Api for this project by this steps below

    Rightclick on project->properties->android->set android Target version

    Also remove Facebook library project once and again add it.

    0 讨论(0)
  • 2021-01-17 02:24

    Import the sdk without copying the project to workspace. this solution has worked for me and does not present any errors

    0 讨论(0)
  • 2021-01-17 02:27

    The problem was that the path to the android-supprort-v4.jar wasn't correct..

    Fixed it by setting the correct path.

    0 讨论(0)
提交回复
热议问题