Well, as said in the title, I get two errors on the class where I put the SSO code saying:
1) "The method Authorize is undefined for the type Facebook"... 2) "The constructor Facebook is undefined"...
I get the same error for AuthorizeCallback...
I don't know what to do... I followed the tutorial that "FB" created ("Android Tutorial")...
This is the code:
package my.package.namespace;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import com.facebook.android.*;
import com.facebook.android.Facebook.*;
public class Facebook extends Activity {
Facebook fbclient = new Facebook("myappid");
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
fbclient.authorize(this, new DialogListener() {
@Override
public void onComplete(Bundle values) {}
@Override
public void onFacebookError(FacebookError error) {}
@Override
public void onError(DialogError e) {}
@Override
public void onCancel() {}
});
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
fbclient.authorizeCallback(requestCode, resultCode, data);
}
}
