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.

What's the procedure to run Facebook Connect application in android? Here is the link:http://code.google.com/p/fbconnect-android/

Please explain step by step. I'm having errors in my manifest file:

<activity android:name="com.codecarpet.fbconnect.FBLoginActivity"
            android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
        <activity android:name="com.codecarpet.fbconnect.FBPermissionActivity"
            android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
        <activity android:name="com.codecarpet.fbconnect.FBFeedActivity"
            android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
share|improve this question
You need to be mention what errors you're having. Though I imagine you're not seeing those activities resolve because you're not compiling against the JAR properly. The website shows you how to add the JAR to your build path. – Christopher Apr 1 '10 at 17:48

1 Answer

Don't integrate Facebook API from mobile.

Instead you should create your own web service and put somewhere on the web where you can update API changes more frequently than rolling out new mobile version of your app for each API changes. So the point here is that you keep API calls on the webserver where you can do immediate changes rather than pushing mobile updates through time consuming Markets approval.

Make that go (1) Android phone -> (2) your webserver file with Facebook API --> (3) Facebook Servers. You can find more examples working with Facebook API such as using PHP.

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.