ソースを参照

Update RNCWebViewManager.java

Thibault Lenclos 4 年 前
コミット
85ccdeb34b
No account linked to committer's email address
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java

+ 1
- 1
android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java ファイルの表示

@@ -725,7 +725,7 @@ public class RNCWebViewManager extends SimpleViewManager<WebView> {
725 725
 
726 726
     @Override
727 727
     public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
728
-      if (ReactBuildConfig.DEBUG && mignoreSslErrors) {
728
+      if (BuildConfig.DEBUG && mignoreSslErrors) {
729 729
         handler.proceed();
730 730
       }
731 731