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,22 @@
package com.reactnativecommunity.webview;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
import com.facebook.react.bridge.Callback;
public class RNCWebViewModule extends ReactContextBaseJavaModule {
private final ReactApplicationContext reactContext;
public RNCWebViewModule(ReactApplicationContext reactContext) {
super(reactContext);
this.reactContext = reactContext;
}
@Override
public String getName() {
return "RNCWebView";
}
}