Facebook Android SDK when running example apps gives
11-14 23:17:58.484: ERROR/HttpOperation.run(1139): class java.net.UnknownHostException api.facebook.com [htt
You need to add the permission to use the internet to the app. If you don't, the app throws this error.
go into the manifest and add this line:
<uses-permission android:name="android.permission.INTERNET"></uses-permission>