개발/안드로이드 개발
Terminal로 딥링크 테스트 하는 방법
룬아님
2020. 9. 2. 18:05
adb shell am start -W -a android.intent.action.VIEW -d "{deep link path}" {app package name}
Example :
adb shell am start -W -a android.intent.action.VIEW -d "deeplink://something" com.test.sample
query를 추가할 때
"deeplink://test?type=income"
query가 여러개일 때
"deeplink://test?from=2020-01-01\&to=2020-02-01\&type=income
&앞에 반드시 \을 넣어줘야 제대로 인식한다.
더보기
https://developer.android.com/training/app-links/deep-linking?hl=ko#testing-filters
터미널을 이용한 딥링크 테스트 android 공식 문서 링크
반응형