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'm implementing Facebook SDK into my App.

Following the facebook developers guide, except I do not have GIT set up, so I've downloaded the SDK, and imported it to Eclipse, changed Java compliance level to 1.6.

In file Facebook.java, on one method "AutoPublishAsynchTask" I constantly have error:

Call requires API level 3 (current min is 1): android.os.AsyncTask#

How to get rid of error?

share|improve this question

1 Answer

up vote 0 down vote accepted

Change your android:minSdkVersion of manifest to 8 or more then 3 , then it will work. The problem is AsyncTask is introduced from level 3 for that reason you getting the error.

share|improve this answer
Tnx. Did that, now it looks good. I do not understand, as this is Library project, shouldn't it check minSdkVersion of "main" project that includes it? ... how ever, it looks good now. – Balkyto Oct 4 '12 at 11:00

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.