Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am just starting off with Facebook for Android. I have followed the instructions provided on the developer website. I created a facebook project and used Android 2.3.3 as target. Then I created another project(with the same target) and added the Facebook project. However, the following error keeps popping up: "Unable to resolve target 'android-3'". I have the APKs 7 and 10 only. How do I resolve this? Please help!

share|improve this question

2 Answers

In your manifest file change target sdk version to 10. That might look like this.

<uses-sdk android:minSdkVersion="4" 
      android:targetSdkVersion="10"
       />
share|improve this answer

in http://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/

You'll need to have the Android 2.2 (API 8) components installed in order to use the Facebook SDK.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.