React Native WebView -Debug -Netzwerk reagieren
// For ios you just need to open the inspector in safari
// For android you need to modify the MainApplication.java:
import android.webkit.WebView; // add this
...
@Override
public void onCreate() {
super.onCreate();
WebView.setWebContentsDebuggingEnabled(true); // add this
}
GutoTrosla