1

I'm using maven to manage my dependency, how can i add the facebook-androidk-sdk 3.0.1 as library project in pom.

Where i can get the latest code for facebook sdk 3.0.1

I treed to build the apk, but I'm gettting following error please advice how to fix this issue

 'drawable' with value '@drawable/com_facebook_picker_list_selector_background_transition'

Samith

rciovati
  • 27,603
  • 6
  • 82
  • 101
Sam
  • 6,215
  • 9
  • 71
  • 90

1 Answers1

1

The Facebook SDK is a normal Android library, in order to use it with Maven you need to do the following:

  1. Create the apklib
  2. Install the apklib in your local or remote repository
  3. Add the apklib dependency to your project pom.xml

Take a look at the documentation for commands examples: https://code.google.com/p/maven-android-plugin/wiki/ApkLib

You can obtain the Facebook SDK here: https://developers.facebook.com/android/downloads/

rciovati
  • 27,603
  • 6
  • 82
  • 101