Development/Android
딥링크 구현하기
코드의추억
2015. 4. 30. 13:25
모바일로 국한된 의미로 설명
사용자가 Google 검색결과에서 앱으로 들어올수 있는 방법을 구현하는것
<activity android:name="com.example.android.GizmosActivity"
android:label="@string/title_gizmos" >
<intent-filter android:label="@string/filter_title_viewgizmos">
<action android:name="android.intent.action.VIEW" />
<!-- Accepts URIs that begin with "http://example.com/gizmos” -->
<data android:scheme="http"
android:host="example.com"
android:pathPrefix="/gizmos" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
참고
https://developers.google.com/app-indexing/webmasters/app?hl=ko