[로그인] sendUserActionEvent() mView == null 와 AUTHORIZATION_FAILED: Bad client credentials

로그인을 하려할때 로그인 버튼을 누르면 항상: E/ViewRootImpl: sendUserActionEvent() mView == null
로그인을 하면 항상: AUTHORIZATION_FAILED: Bad client credentials
이 에러들이 뜹니다ㅠㅠ
웹뷰로 할땐 카톡에 로그인했다는 톡은 오는데 에러들은 그대로뜨고 연결되어있는 앱에 개발중인 앱이 뜨지않습니다.
웹뷰로 안하고 카카오톡 앱으로 하려니 톡 조차 안옵니다…

여러가지 해결책들을 봤지만 되는게 없네요…ㅠㅠ
이코드도 넣어보고
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (Session.getCurrentSession().handleActivityResult(requestCode, resultCode, data)) {
return;
}
super.onActivityResult(requestCode, resultCode, data);
}

이걸로 해시키도 확인했습니다.
keytool -exportcert -alias androiddebugkey -keystore <debug_keystore_path> -storepass android -keypass android | openssl sha1 -binary | openssl base64

네이티브앱키도 잘 들어가있나 확인했는데…

제가 뭘 잘못한걸까요ㅠㅠㅠ

Client secret 기능을 사용하고 계신데 이 값이 올라오고 있지 않은 것 같네요. AndroidManifest.xml에 com.kakao.sdk.AppKey 값과 함께 com.kakao.sdk.ClientSecret 값도 정의해 놓으셨나요?