override fun onCreate() {
super.onCreate()
Logger.init()
KakaoSdk.init(this, BuildConfig.NATIVE_APP_KEY)
}
해당 코드로 초기화해주고
TalkApiClient.instance.chatChannel(context, "채널id") { error ->
Log.i(TAG, "카카오톡 채널 추가 실패 $error")
if (error is ClientError) {
val intent =
Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.kakao.talk"))
context.startActivity(intent)
}
}
해당 함수로 부르고 있었습니다.
디버그키나 제 컴퓨터에서 딴 키해시로 설정 후 빌드앱으로 했을때는 정상 작동을하는것을 확인했는데
구글 사인 키로 변경 후 구글 배포 이후 프레이스토어에서 설치한 앱만 동작을 안합니다.