Debug
-
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..