💡딥링크 예시
"testapp://event/list"
scheme://host/path
<!-- testapp://event/list -->
<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="testapp"
android:host="event"
android:pathPrefix="/list"/>
</intent-filter>
출처: https://bacassf.tistory.com/146 [코딩하는 일용직 노동자:티스토리]
🚩딥링크 진단 방법
홈페이지 : https://halgatewood.com/deeplink/
html : <a href=scheme://host/path>
ADB 이용 방법
adb shell am start -W -a android.intent.action.VIEW -d "scheme://host?param1=value1" 앱패키지명
ex)
adb shell am start -W -a android.intent.action.VIEW -d "testapp://event/list" com.app.leetest
출처: https://bacassf.tistory.com/146 [코딩하는 일용직 노동자:티스토리]
Deep Link Testing Tool - Mobile App Development Tools – HalGatewood.com
Hal Gatewood Christian. Husband. Father. Goofball. Technology Manager for BibleTalk.tv
halgatewood.com
💫딥링크 실전 테스트
'🤖Android' 카테고리의 다른 글
Droidx / Samsung App 솔루션 우회 (0) | 2022.10.14 |
---|---|
[AOS] Flutter Proxy Bypass / SSL Pinning (0) | 2022.10.14 |
[FRIDA] - Anti Debugging Bypass (2) | 2022.09.19 |
〽APK 분석툴 제작 0.1V (0) | 2020.09.21 |