쌓고 쌓다
[안드로이드 스튜디오] 카카오 계정으로 로그인 Continue 버튼에서 안넘어갈때 본문
카카오 앱으로 로그인하면 다음 화면으로 잘 넘어가지만.
카카오 계정으로 로그인할때 continue 버튼을 눌러도 진행이 안되는 경우가 있다.
AndroidManifest.xml에 다음 코드를 추가해주자.
<activity
android:name="com.kakao.sdk.auth.AuthCodeHandlerActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="oauth"
android:scheme="kakao${app_key}" />
</intent-filter>
</activity>
'프로그래밍 > 안드로이드 스튜디오' 카테고리의 다른 글
안드로이드 스튜디오 LocationManger 위치 정보를 못가져올때 (0) | 2023.12.30 |
---|---|
java.lang.classcastexception: com.google.gson.internal.linkedtreemap cannot be cast to ... (0) | 2023.12.06 |
안드로이드 스튜디오 local.properties에 저장한 값 사용하는 법 (0) | 2023.11.18 |
Comments