PC & Mobile Tip

[ADB | 노루팅] 유용한 ADB 명령어들

Rexter 2020. 3. 29. 21:01
반응형

*주의*

adb를 이용하여 설정등을 변경할 경우 폰이 정상적인 작동을 하지 않을 수도 있습니다.

리스트에 올리는 건 해보고 별 이상이 없다고 생각되는 것들만 올립니다.

추후 괜찮다 싶은 것들이 있으면 추가할 예정입니다.

 

0. adb 최신 다운로드 링크

  https://dl.google.com/android/repository/platform-tools-latest-windows.zip

 

1. 최대 밝기 경고 없애기

  adb shell settings put system shown_max_brightness_dialog 0

 

2. 카메라 무음(볼륨 조정, 시스템 볼륨과 같게)

  adb shell settings put system csc_pref_camera_forced_shuttersound_key 0

 

3. 설치된 앱 목록 확인

   adb shell pm list packages

 3-1. 활성화 되어 있는 앱만 표시

   adb shell pm list packages -e

 

4. 앱 강제 비활성화

   adb shell pm disable-user --user 0 패키지명

 

5. 앱 강제 삭제(공간이 부족한 경우를 제외하면 되도록 삭제는 하지 않는게 좋습니다)

adb shell pm uninstall --user 0 패키지명

 

6. 화면 회전 버튼 해제.(안드로이드 파이 이상. 좌/우측 하단에 생기는 짜증나는 버튼)

adb shell settings put secure show_rotation_suggestions 0

 

7. 설정값 확인

   adb shell settings list ~~~~~~~~

   => ~~~~~~~ 부분에 들어갈 수 있는 것들 : secure, system 등

반응형