Notice
Recent Posts
Recent Comments
Link
코드 한 줄
[Solution] 안드로이드 adb shell 을 이용한 프록시 설정 본문
반응형
안드로이드 단말기의 설정 앱에서 프록시를 설정하는 방법이 아닌, 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
반응형
'Develop - > Android' 카테고리의 다른 글
[Solution] 안드로이드 사용자 인증서를 시스템 인증서로 설치하기 [3/3] (0) | 2025.03.05 |
---|---|
[Solution] 안드로이드 사용자 인증서를 시스템 인증서로 설치하기 [2/3] (0) | 2025.03.04 |
[Solution] 안드로이드 사용자 인증서를 시스템 인증서로 설치하기 [1/3] (0) | 2025.02.27 |
[Solution] 안드로이드 커스텀 리스트뷰 구현하기 (0) | 2018.01.13 |
[Solution] 안드로이드 로그인 정보 저장 기능 구현하기 (1) | 2018.01.09 |
Comments