Hello EricFrohnhoefer,
I used the fabric sdk and i got this error, When I click on the allow button of share email dialog.
Error: Could not execute method for android:onClick
i used this line of code for getting email addres.
authClient.requestEmail(session, new Callback() {
@Override
public void success(Result result) {
furtherCheck(result.toString(), “”, “”, Constant.loginTypeSocial);
}
@Override
public void failure(TwitterException exception) {
exception.printStackTrace();
Toast.makeText(Login.this,exception.getMessage(),Toast.LENGTH_SHORT);
}
});