adb 명령어로 Service를 실행시키는 방법을 소개합니다.
adb shell am start-service
adb shell am start-service <Intent>
명령어로 Intent에 대한 서비스를 실행시킬 수 있습니다.
Intent는 명령어에서 옵션으로 정의할 수 있습니다. 자세한 설정 방법은 글 하단의 "참고 : 인텐트 설정 옵션"을 참고해주세요.
foreground service 실행
아래 명령어로 서비스를 foreground로 실행시킵니다.
$ adb shell am start-foreground-service <Intent>
service 중지
아래 명령어는 실행 중인 서비스를 중지시킵니다.
$ adb shell am stop-service <Intent>
Action만 갖고 있는 Intent 실행
adb shell am start-service
명령어 다음에 -a android.intent.action.MY_ACTION
처럼 -a
옵션에 Action 이름을 입력하시면, 그 Action을 갖고 있는 Intent가 실행됩니다.
$ adb shell am start-service -a android.intent.action.MY_ACTION
Output:
Starting service: Intent { act=android.intent.action.MY_ACTION }
Action, Category를 갖고 있는 Intent 실행
-c
옵션에 Category 이름을 입력하시면, 인텐트에 Category를 설정할 수 있습니다.
카테고리가 두개라면, -c AAA -c BBB
처럼 여러번 입력하시면 됩니다.
$ adb shell am start-service -a android.intent.action.MY_ACTION -c android.intent.category.MY_CATEGORY
Action과 Data를 갖고 있는 Intent 실행
-d
옵션 다음에 Uri를 입력하면, Uri의 scheme 등의 데이터가 설정된 Intent가 실행됩니다.
$ adb shell am start-service -a android.intent.action.MY_ACTION -d https://google.com
Package가 설정된 Intent 실행
-p
옵션으로 Package가 설정된 Intent를 실행시킬 수 있습니다.
$ adb shell am start-service -a android.intent.action.MY_ACTION -p com.example.myapp
Package, Component가 설정된 Intent 실행
-n
옵션으로 Package와 Component가 설정된 Intent를 실행시킬 수 있습니다.
$ adb shell am start-service -a android.intent.action.MY_ACTION -n com.example.myapp/com.example.myapp.MyService
참고 : 인텐트 설정 옵션
adb 명령어에 인텐트를 전달할 때 사용하는 옵션입니다.
<INTENT> specifications include these flags and arguments:
[-a <ACTION>] [-d <DATA_URI>] [-t <MIME_TYPE>] [-i <IDENTIFIER>]
[-c <CATEGORY> [-c <CATEGORY>] ...]
[-n <COMPONENT_NAME>]
[-e|--es <EXTRA_KEY> <EXTRA_STRING_VALUE> ...]
[--esn <EXTRA_KEY> ...]
[--ez <EXTRA_KEY> <EXTRA_BOOLEAN_VALUE> ...]
[--ei <EXTRA_KEY> <EXTRA_INT_VALUE> ...]
[--el <EXTRA_KEY> <EXTRA_LONG_VALUE> ...]
[--ef <EXTRA_KEY> <EXTRA_FLOAT_VALUE> ...]
[--eu <EXTRA_KEY> <EXTRA_URI_VALUE> ...]
[--ecn <EXTRA_KEY> <EXTRA_COMPONENT_NAME_VALUE>]
[--eia <EXTRA_KEY> <EXTRA_INT_VALUE>[,<EXTRA_INT_VALUE...]]
(mutiple extras passed as Integer[])
[--eial <EXTRA_KEY> <EXTRA_INT_VALUE>[,<EXTRA_INT_VALUE...]]
(mutiple extras passed as List<Integer>)
[--ela <EXTRA_KEY> <EXTRA_LONG_VALUE>[,<EXTRA_LONG_VALUE...]]
(mutiple extras passed as Long[])
[--elal <EXTRA_KEY> <EXTRA_LONG_VALUE>[,<EXTRA_LONG_VALUE...]]
(mutiple extras passed as List<Long>)
[--efa <EXTRA_KEY> <EXTRA_FLOAT_VALUE>[,<EXTRA_FLOAT_VALUE...]]
(mutiple extras passed as Float[])
[--efal <EXTRA_KEY> <EXTRA_FLOAT_VALUE>[,<EXTRA_FLOAT_VALUE...]]
(mutiple extras passed as List<Float>)
[--esa <EXTRA_KEY> <EXTRA_STRING_VALUE>[,<EXTRA_STRING_VALUE...]]
(mutiple extras passed as String[]; to embed a comma into a string,
escape it using "\,")
[--esal <EXTRA_KEY> <EXTRA_STRING_VALUE>[,<EXTRA_STRING_VALUE...]]
(mutiple extras passed as List<String>; to embed a comma into a string,
escape it using "\,")
Loading script...
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력