I am building an android app that uses facebook connect for users to log in, however, it is working fine when facebook native app not present but it shows login error when native app present ? it works fine when facebook loaded with webview
public void onFacebookError(FacebookError error) {
SessionEvents.onLoginError(error.getMessage());
Toast.makeText(Login.this, "Server connection failed",
Toast.LENGTH_SHORT).show();
}
public void onError(DialogError error) {
SessionEvents.onLoginError(error.getMessage());
Toast.makeText(Login.this, "Server connection failed",
Toast.LENGTH_SHORT).show();
}
i am getting "server connection failed" message ? how to solve please help