쌓고 쌓다

[안드로이드 스튜디오] 카카오 계정으로 로그인 Continue 버튼에서 안넘어갈때 본문

프로그래밍/안드로이드 스튜디오

[안드로이드 스튜디오] 카카오 계정으로 로그인 Continue 버튼에서 안넘어갈때

승민아 2023. 12. 22. 14:18

 

카카오 앱으로 로그인하면 다음 화면으로 잘 넘어가지만.

카카오 계정으로 로그인할때 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>
Comments