Skip to content

Commit

Permalink
[chore] manifest에 sdk activity 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jinuemong committed Jan 25, 2024
1 parent b6ba9d4 commit 792cdbd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,16 @@
<meta-data android:name="io.sentry.traces.sample-rate" android:value="1.0" />
<!-- enable profiling when starting transactions, adjust in production env -->
<meta-data android:name="io.sentry.traces.profiling.sample-rate" android:value="1.0" />

<meta-data android:name="com.kakao.sdk.AppKey" android:value="@string/kakao_app_key"/>
<activity android:name="com.kakao.sdk.auth.AuthCodeHandlerActivity" android:exported="true">
<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="@string/kakao_oauth_key" />
</intent-filter>
</activity>
</application>
</manifest>

0 comments on commit 792cdbd

Please sign in to comment.