앱ID : 554156
안녕하세요. 현재 플러터로 카카오 로그인 연동을 개발중에 있는데
안드로이드에서 카카오톡 미설치시 로그인이 동작하지 않습니다.
한가지 특이사항으로는 멀티앱으로 개발중에 있어서 혹시 이때 따로 설정을 해줘야 하는 것이 있는지 궁금합니다
해시키는 gSy3L4ysJ8xxxxxxxxxx 로 등록한 상태입니다
AndroidManifest.xml
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:taskAffinity=""
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<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:host="oauth"
android:scheme="kakaof185xxxxxxxxx" />
</intent-filter>
</activity>