3

对于具有内置迷你浏览器并需要大量网络导航的应用程序,我正在使用人行横道作为 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);

任何帮助、代码、概念将不胜感激。提前致谢

4

0 回答 0