Commit 06af52c8 by 刘鹏

feat : ssl正数优化提示方案

parent 5d4a9784
...@@ -38,7 +38,7 @@ ext { ...@@ -38,7 +38,7 @@ ext {
"ydl-platform" : "0.0.40.97", "ydl-platform" : "0.0.40.97",
//第二步 若干 //第二步 若干
"ydl-webview" : "0.0.38.61", "ydl-webview" : "0.0.38.62",
"ydl-media" : "0.0.21.44", "ydl-media" : "0.0.21.44",
"ydl-pay" : "0.0.18.19", "ydl-pay" : "0.0.18.19",
"m-audioim" : "0.0.49.29.88", "m-audioim" : "0.0.49.29.88",
...@@ -122,7 +122,7 @@ ext { ...@@ -122,7 +122,7 @@ ext {
"ydl-platform" : "0.0.40.97", "ydl-platform" : "0.0.40.97",
//第二步 若干 //第二步 若干
"ydl-webview" : "0.0.38.61", "ydl-webview" : "0.0.38.62",
"ydl-media" : "0.0.21.44", "ydl-media" : "0.0.21.44",
"ydl-pay" : "0.0.18.19", "ydl-pay" : "0.0.18.19",
"m-audioim" : "0.0.49.29.88", "m-audioim" : "0.0.49.29.88",
......
...@@ -1018,12 +1018,8 @@ public class NewH5Activity extends BaseActivity implements PtrHandler { ...@@ -1018,12 +1018,8 @@ public class NewH5Activity extends BaseActivity implements PtrHandler {
handler.proceed(); handler.proceed();
return; return;
} }
final AlertDialog.Builder builder = new AlertDialog.Builder(this); ToastUtil.toastShort("SSL 证书验证错误");
builder.setMessage(R.string.platform_notification_error_ssl_cert_invalid); handler.cancel();
builder.setPositiveButton("继续", (dialog, which) -> handler.proceed());
builder.setNegativeButton("取消", (dialog, which) -> handler.cancel());
final AlertDialog dialog = builder.create();
dialog.show();
} }
private void initShareMenu() { private void initShareMenu() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment