Move android IRWebView to WebView

This commit is contained in:
Jamon Holmgren
2018-08-02 22:01:29 -07:00
parent e9a6c6134f
commit 0d3a4ebe62
7 changed files with 1 additions and 1 deletions
@@ -0,0 +1,19 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package com.infinitered.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 ReactWebViewManager}.
*/
public interface WebViewConfig {
void configWebView(WebView webView);
}