scheme://path
의 형태. scheme
: 특정 고유 앱을 나타냄 예시) youtube://
앱 대시보드에서 앱의 딥 링크 정보를 추가할 수 있다
AndroidManifest.xml
파일 열기// 앱에 맞게 코드 수정하기
<activity
android:name="com.example.android.GizmosActivity"
android:label="@string/title_gizmos" >
<intent-filter android:label="@string/filter_view_http_gizmos">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.example.com/gizmos” -->
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />
<!-- note that the leading "/" is required for pathPrefix-->
</intent-filter>
<intent-filter android:label="@string/filter_view_example_gizmos">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "example://gizmos” -->
<data android:scheme="example"
android:host="gizmos" />
</intent-filter>
</activity>
://
없이 URL 스키마를 추가[빠른 시작] 메뉴로 플랫폼 추가하기
info.plist
파일에 코드 추가AppDelegate.m
파일에 아래 코드 추가Xcode
에서 URL Types
추가하기info
하단에서 추가할 수 있다앱 광고 지원 도구 페이지 하단에서 테스트 링크 확인
example://gizmos 입력후 [Android에 보내기] 클릭
example://gizmos 입력후 [iOS에 보내기] 클릭