728x90
https://github.com/react-native-webview/react-native-webview/blob/master/docs/Debugging.md
위 사이트 참고
// MainApplication.java 에 디버깅 허용 소스 추가
import android.webkit.WebView;
@Override
public void onCreate() {
super.onCreate();
...
WebView.setWebContentsDebuggingEnabled(true);
}
크롬에서 아래 주소로 열기
chrome://inspect/#devices
앱을 실행 중인 기기명 확인 후 inspect 클릭
'Mobile App Develop > Android개발' 카테고리의 다른 글
[Android] Could not find com.facebook.react:react-native-gradle-plugin 에러로 빌드 안될 시 (0) | 2022.06.30 |
---|