[RN] React Native WebView Debugging

2019. 5. 28. 15:20EXPERIENCE/MOBILE | ReactNative

반응형

#Android & Chrome

소스적용 : MainApplication.java

 

 

 

 

 

 

import android.webkit.WebView;

@Override public void onCreate() { 
   super.onCreate();   
   WebView.setWebContentsDebuggingEnabled(true); 
}

 

확인 : chrome://inspect/#devices 

 

 

 

 

 

 

 

https://github.com/react-native-community/react-native-webview/blob/master/docs/Debugging.md

 

react-native-community/react-native-webview

React Native Cross-Platform WebView. Contribute to react-native-community/react-native-webview development by creating an account on GitHub.

github.com

 #WebView.setWebContentsDebuggingEnabled(true);

반응형