在XWalkView(CrossWalk)中打开不受信任的SSL链接时出现SSL错误

时间:2018-07-17 07:03:29

标签: android android-browser crosswalk crosswalk-project

我正在使用人行横道作为android中Webview的替代方法,用于内置微型浏览器且需要大量网络导航的应用程序。

问题:

现在,每当我尝试导航至基于SSL的对话框时,都会弹出一个对话框,提示 SSL证书错误警报,然后在此之后卡住。

我的摇篮

dependencies {
 implementation fileTree(dir: 'libs', include: ['*.jar'])

 //noinspection GradleCompatible
 implementation 'com.android.support:appcompat-v7:27.1.1'
 implementation 'com.android.support.constraint:constraint-layout:1.1.2'
 implementation 'org.xwalk:xwalk_core_library_beta:18.48.477.13'

 testImplementation 'junit:junit:4.12'
 androidTestImplementation 'com.android.support.test:runner:1.0.2'
 androidTestImplementation 'com.android.support.test.espresso:espresso- 
 core:3.0.2' 
}

我的代码:

XWalkView xWalkView = findViewById(R.id.xwv_browser);
    xWalkView.setUserAgentString("Browser/1.0 Android");
    xWalkView.load(WEB_URL, null);

任何帮助,代码,概念将不胜感激。预先感谢

0 个答案:

没有答案