[Android SDK V2] 카카오로그인 계속하기 버튼 눌러도 반응 없는 이슈

문의 시, 사용하시는 SDK 버전 정보와 디벨로퍼스 앱ID를 알려주세요.

Faq 목록 - 10. Android ( Faq 목록 입니다 ) 먼저 확인해주세요.


loginWithKakaoAccount 로 로그인 시 동의하고 계속하기 이후 동작이 없습니다 콜백이 안옵니다
Application Class, Manifest에 kakao Native Key 설정, 키 값 동일 확인 했습니다
리다이렉팅 url 설정도 되어있구요
패키지 네임 = com.youhajun.hyanghae
카카오 디벨로퍼스 앱 ID = 1079719

확인 해주시면 감사합니다…

AndroidManifest.xml 에 액티비티(Activity) 설정 하셨나요?

Android | Kakao Developers Android




되어있습니다

AndroidManifest.xml
전체내용 공유해주시겠어요? 중요정보는 *표 처리 해주세요.

<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<uses-feature android:name="android.hardware.camera" />

<application
    android:usesCleartextTraffic="true"
    android:name="com.youhajun.hyanghae.HyanghaeApplication"
    android:allowBackup="true"
    android:dataExtractionRules="@xml/data_extraction_rules"
    android:fullBackupContent="@xml/backup_rules"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.Hyanghae">

    <activity
        android:name="com.youhajun.hyanghae.windows.MainActivity"
        android:exported="true"
        android:theme="@style/Theme.Hyanghae">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <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${KAKAO_NATIVE_KEY}" />
        </intent-filter>
    </activity>

    <activity
        android:name="com.yalantis.ucrop.UCropActivity"
        android:screenOrientation="fullSensor"
        android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>
</application>

입니다

android:scheme="kakao${KAKAO_NATIVE_KEY}" 

이부분은 실제로 이렇게 작성하셨나요?

1개의 좋아요

넵 실제로 그렇게 작성하고
buildGradle 에서 manifestPlaceholders[“KAKAO_NATIVE_KEY”] = getProperty(“KAKAO_NATIVE_KEY”)
로 설정해줬습니다 이 부분 실제 키 값
ex) android:scheme=“kakao9e81…841”
로 변경해서 확인한 결과, 잘 작동됩니다

덕분에 잘 해결되었습니다
이른 아침부터 도움 주셔서 감사합니다 :slightly_smiling_face: 좋은 하루 되시길 바랍니다

1개의 좋아요