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>