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 have an Android app that allows users to login via Facebook. Everything works well in the emulator, but when I export a signed .apk, and run from my phone, it appears that the Facebook SDK isn't included (it will flash an empty FB screen for a second, then go back to the previous screen).

The facebook SDK is un-compiled and the code is included in the project as a separate package. As I said in above, it works in an emulator so I'm assuming I properly included the package as a library from my own package.

Is there anything special you need to do to include an outside library when exporting the .apk?

Thanks!

share|improve this question
Are you sure the Facebook SDK isn't included? I think the problem is likely something different. Have you tried debugging on your phone? – Brian Mortenson Jul 28 '12 at 2:13
I wouldn't doubt that it could be something else. I just kind of got thrown into Android development last week so I'm not sure how to debug on my phone... could you point me to a tutorial by chance? – Dan Robinson Jul 28 '12 at 2:15
If you're using Eclipse, it does a pretty good job of making it simple for you. If not, I'd look here: developer.android.com/tools/help/adb.html. You should be able to find an eclipse tutorial from that page too. – Brian Mortenson Jul 28 '12 at 2:18
For simple answer to your question, it is no. It would help us a lot if you could provide logcat… Quick use: adb logcat -c to clear logs, and adb logcat -d to dump new logs. – user1521536 Jul 28 '12 at 4:01

1 Answer

Have you ever created Key Hash and register with FB account?

If no, Follow the Step5 on the tutorial
https://developers.facebook.com/docs/mobile/android/build/

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.