Skip to content

Commit

Permalink
Fix : data 요소를 별도의 Intent-filter에 선언
Browse files Browse the repository at this point in the history
  • Loading branch information
DongChyeon committed Sep 6, 2024
1 parent d2a85ea commit 05d4ea9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,14 @@
android:theme="@style/Theme.Winey">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />

<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="@string/KAKAO_NATIVE_APP_KEY_FULL" />
<data android:host="kakaolink" />
</intent-filter>
Expand Down

0 comments on commit 05d4ea9

Please sign in to comment.