딥링크 공부

#App#DeepLink

들어가며

Flutter로 앱을 개발하기 시작하면서 '딥링크'와 '앱링크'라는 용어를 처음 접하게 되었다.
지금은 이 두 용어에 대해 얕게나마 알고 있는데, 더 깊이 이해하고 적용해보기 위해 정리한다.

딥링크란?

URI 스킴

Android

<intent-filter android:autoVerify="true">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:scheme="pharmpick"/>
</intent-filter>

iOS

<dict>
    <key>CFBundleTypeRole</key>
    <string>Editor</string>
    <key>CFBundleURLSchemes</key>
    <array>
        <string>kakaocacab68c7b3fa9abb01dcdefe79c3264</string>
        <string>com.googleusercontent.apps.909965283018-gchpj29g09opb643v21c4fqqrfiprqej</string>
        <string>fb9589744014485692</string>
        <string>pharmpicknaverlogin</string>
        <string>pharmpick</string>
    </array>
</dict>

References


Profile picture

1. 2025년이 끝나기 전까지 기본기를 완벽히 정리한다.
2. 내가 좋아하는 것을 차곡히 기록한다.
3. 하루하루는 치열하게, 인생은 흘러가는대로~

© 2025 kdkdhoho. Built with Gatsby