투케이2K

44. (ADB) adb shell getprop / ADB 명령어 사용해 휴대폰 시스템 속성 값 전체 확인 본문

ADB (cmd)

44. (ADB) adb shell getprop / ADB 명령어 사용해 휴대폰 시스템 속성 값 전체 확인

투케이2K 2024. 3. 19. 18:58
반응형

[환경 구성 및 요약 설명]

Mobile : Android

설 명 : adb shell getprop / ADB 명령어 사용해 휴대폰 시스템 속성 값 전체 확인

 

[설 명]

 

------------------------------------------------------------------------------------------
[명령어]
------------------------------------------------------------------------------------------

$ adb shell getprop

------------------------------------------------------------------------------------------





------------------------------------------------------------------------------------------
[추가 설명 및 참고 사이트]
------------------------------------------------------------------------------------------

[1] : adb 명령어를 사용 하기 위해서는 (사전) 안드로이드 개발자 모드 활성 >> 디버깅 선 연결 >> 디버깅 허용이 필요합니다

  >> adb devices 명령어를 사용해 정상적으로 device 인식이 되었는지 확인


[2] : 안드로이드 기기 디버깅 연결이 안되는 경우 >> 개발자 모드에서 USB 연결 활성 상태, 
     필요 소프트웨어 설치 상태, 충전 선 데이터 전송 여부 등 확인이 필요합니다


[3] : adb shell getprop 명령어를 사용해 휴대폰 전체 시스템 속성 값을 확인할 수 있습니다

------------------------------------------------------------------------------------------





------------------------------------------------------------------------------------------
[결과 출력]
------------------------------------------------------------------------------------------

$ adb shell getprop
[DEVICE_PROVISIONED]: [1]
[aaudio.hw_burst_min_usec]: [2000]
[aaudio.mmap_exclusive_policy]: [2]
[aaudio.mmap_policy]: [2]
[apex.all.ready]: [true]
[arm64.memtag.process.system_server]: [off]
[audio.sys.mute.latency.factor]: [2]
[audio.sys.noisy.broadcast.delay]: [500]
[audio.sys.offload.pstimeout.secs]: [3]
[audio.sys.routing.latency]: [0]
[bluetooth.device.class_of_device]: [90,2,12]
[bluetooth.profile.a2dp.source.enabled]: [true]
[bluetooth.profile.asha.central.enabled]: [true]
[bluetooth.profile.avrcp.target.enabled]: [true]
[bluetooth.profile.bap.broadcast.assist.enabled]: [false]
[bluetooth.profile.bap.broadcast.source.enabled]: [false]
[bluetooth.profile.bap.unicast.client.enabled]: [false]

.....

------------------------------------------------------------------------------------------

 

반응형
Comments