카카오 로그인을 할때, 선택사항 동의를 하려고 외부 브라우저로 나간 뒤 '동의하고 계속하기’를 눌러도 아무런 반응이 없습니다.
아마도 scheme 문제인거 같은데, 도통 안되는 이유를 모르겠습니다.
동의 요청한 항목은 친구목록 읽기 입니다.
<queries>
<package android:name="com.kakao.talk" />
</queries>
<application
android:name=".GlobalApplication"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher_amadiary"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_amadiary"
android:supportsRtl="true"
android:theme="@style/Theme.App.Starting"
android:usesCleartextTraffic="true"
android:requestLegacyExternalStorage="true"
android:defaultToDeviceProtectedStorage="true"
android:preserveLegacyExternalStorage="true"
android:requestRawExternalStorageAccess="true">
<activity
android:screenOrientation="portrait"
android:name=".Activitys.AlarmActivity"
android:exported="false" />
<activity
android:screenOrientation="portrait"
android:name=".Activitys.LoginActivity"
android:exported="false" />
<activity
android:screenOrientation="portrait"
android:name=".Activitys.TutorialActivity"
android:exported="false" />
<activity
android:screenOrientation="portrait"
android:name=".Activitys.NavigationActivity"
android:exported="false" />
<activity
android:screenOrientation="portrait"
android:name=".MainActivity"
android:hardwareAccelerated="true"
android:exported="false"/>
<activity
android:screenOrientation="portrait"
android:name=".Fragments.Register.RegisterActivity"
android:exported="false" />
<activity
android:name=".SplashScreen"
android:configChanges="orientation|screenSize|keyboardHidden"
android:exported="true"
android:hardwareAccelerated="true"
android:screenOrientation="portrait"
android:theme="@style/SplashActivityTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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:scheme="kakaolink"
android:host="kakao70d06eef07bcaddfaa67143671a39811" />
</intent-filter>
</activity>
<meta-data
android:name="com.kakao.sdk.AppKey"
android:value="@string/kakao_app_key" />