Rename ReactWebView to RNCWebView, remove more infinitered references

This commit is contained in:
Jamon Holmgren
2018-08-15 20:30:06 -07:00
parent bc3be5ecaa
commit f9b9d3c092
14 changed files with 117 additions and 51 deletions
@@ -0,0 +1,12 @@
package com.reactnativecommunity.webview;
import android.webkit.WebView;
/**
* Implement this interface in order to config your {@link WebView}. An instance of that
* implementation will have to be given as a constructor argument to {@link RNCWebViewManager}.
*/
public interface WebViewConfig {
void configWebView(WebView webView);
}