ADB
-
안드로이드 카메라 셔터음 없애는 adb 명령어자유글 2024. 2. 1. 09:38
안드로이드에서 카메라 셔터음을 나지 않게 하기 위해서 쓰는 adb 명령어 입니다. 진동 무음 모드일때 아래의 명령어를 입력하면 셔터음이 나지 않습니다. adb shell settings put system csc_pref_camera_forced_shuttersound_key 0 원래대로 복구하려면 아래의 명령어를 입력하면 됩니다. adb shell settings put system csc_pref_camera_forced_shuttersound_key 1
-
Android adb 사용 여부 앱에서 확인하는 법Android 2021. 12. 14. 14:18
안드로이드 앱에서 보안상 사용자가 adb로 앱을 접근하는지 확인하는 방법이다. Settings.Secure.getInt(context.getContentResolver(), Settings.Secure.ADB_ENABLED, 0) 위의 코드로 adb를 활성화 했는지 확인 할수 있다. 설정되었다면 1, 아니면 0 을 리턴한다. 정확히는 해당옵션의 활성화여부는 설정 - 개발자 옵션 - USB 디버깅 옵션이 켜져 있는지를 확인 합니다. https://stackoverflow.com/questions/18716808/how-to-check-usb-debugging-enabled-programmatically How to check usb debugging enabled programmatically? my qu..
-
ADB Idea(with Android studio plugin)Tools/plugin 2020. 10. 16. 10:22
plugins.jetbrains.com/plugin/7380-adb-idea ADB Idea - Plugins | JetBrains Adds the following ADB commands to Android Studio and Intellij:. plugins.jetbrains.com 안드로이드 스튜디오에서 adb 명령을 바로 내릴수 있게하는 플러그 인 입니다. 지원하는 기능은 아래와 같습니다. ADB Uninstall App ADB Kill App ADB Start App ADB Restart App ADB Clear App Data ADB Clear App Data and Restart ADB Start App With Debugger ADB Restart App With Debugger ADB G..