Debugging(2)
-
Android WebView 디버깅하기
1. WebView 를 사용하는 프로젝트에 WebView::setWebContentsDebuggingEnabled 활성화보안을 위해 디버깅 모드일때만 활성화 하게 처리if (0 != (getApplicationInfo().flags &= ApplicationInfo.FLAG_DEBUGGABLE)){ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT){ WebView.setWebContentsDebuggingEnabled(true); }}2. Android 폰과 연결된 PC에서 Chrome 실행3. Chrome 주소창에 chrome://inspect 입력 후 접속Discover USB Devices 체크 확인4. Chrome 에 나와있는 항..
2024.06.10 -
[Debugging] Remote Virtual Interface Tool(rvictl)을 이용한 iOS 디바이스 네트워크 패킷 캡쳐
## 작업 전 준비사항 # iOS 디바이스의 Identifier(UUID)값을 알아야 한다. # iOS 디바이스는 USB연결상태로 네트워크 패킷 캡쳐 ## rvictl 명령 # Virtual Interface로 등록 $ rvictl -s Starting device 00000000-0000000000000000 [SUCCEEDED] with interface rvi0 # Virtual Interface 목록 확인 $ rvictl -l Current Active Devices: [1] 00000000-0000000000000000 with interface rvi0 # Virtual Interface 삭제 $ rvictl -x Stopping device 00000000-0000000000000000 [S..
2016.11.30