I have integrated the facebooksdk into my android application which is using scringo,
I am able to signup to FB using the below code,
Intent intent = new Intent(ScringoSignUpActivitySub.this, ScringoProfileBridge.class);
intent.putExtra("network", "facebook");
intent.putExtra("action", "signUp");
//intent.putExtra("action", "login");
startActivityForResult(intent, 102);
but i am not able to login to FB in the similar manner as below,
Intent intent = new Intent(ScringoSignUpActivitySub.this, ScringoProfileBridge.class);
intent.putExtra("network", "facebook");
intent.putExtra("action", "login");
//intent.putExtra("action", "login");
startActivityForResult(intent, 102);
i am getting error as 'This app has no Android key hashes configured....'