Sdk 연동후 런처 아이콘이 안보입니다

sdk 연동 전까지는 아이콘이 잘 보이다가
연동하고 앱을 돌리면 실행은 잘 되지만 아이콘이 안보입니다.
음… 뭐가 문제인지… 매니페스트를 잘못 수정한건가요…?

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.hsk.mymemo">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <data android:scheme="@string/kakao_scheme" android:host="@string/kakaolink_host" />
            </intent-filter>
        </activity>
        <meta-data android:name="com.kakao.sdk.AppKey" android:value="@string/kakao_app_key"/>
    </application>
</manifest>

어... 자답합니다... 이 부분을 없애니까 생기네요

3개의 좋아요

그 부분 없애면 카카오 api 연동이 잘 되나요?