adb를 통해서 임의의 인텐트 시작하기

커스텀 URL을 처리하거나 기타 암묵적(implicit) 인텐트를 처리하는 기능을 구현할 때 adb를 통해서 인텐트를 발생시키면 편리하게 테스트할 수 있다. 아래와 같은 형식으로 실행하면 된다.

adb shell am start -a <action> -d <data>

예시

adb shell am start -a android.intent.action.VIEW -d http://www.example.com

 

Leave a Comment

Your email address will not be published. Required fields are marked *