출처 : https://developer.android.com/training/basics/intents/filters.html?hl=ko


* Android studio를 사용하는 경우 Tools - App Links Assistant를 통해서도 생성이 가능하다.


-  AndroidManifest.xml에서 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="https"
android:host="*" />
</intent-filter>


- App Links Assistant를 사용하면 테스트도 가능하다.

by JamesY 2018. 2. 13. 19:23