Develop -/Android
[Solution] 안드로이드 adb shell 을 이용한 프록시 설정
Ahntenna
2025. 2. 20. 10:34
반응형
안드로이드 단말기의 설정 앱에서 프록시를 설정하는 방법이 아닌, shell 에서 명령어를 이용하여 설정하는 방법 입니다.
adb shell settings put global http_proxy <ip>:<port>
ex) adb shell settings put global http_proxy localhost:8080
ex) adb shell settings put global http_proxy 192.168.0.1:9999
반응형
아래는 모든 설정을 취소하는 방법 입니다.
adb shell settings put global http_proxy :0
반응형