gpt4 book ai didi

android - Google Play 在上传新版本时拒绝了应用

转载 作者:太空狗 更新时间:2023-10-29 14:47:18 25 4
gpt4 key购买 nike

谷歌播放消息:

此应用程序使用包含用户安全漏洞的软件或允许在不适当披露的情况下收集用户数据。

以下是您最近提交的问题列表和相应的 APK 版本。请尽快升级您的应用,并增加升级后的APK版本号。

漏洞APK版本SSL 错误处理程序有关 SSL 错误处理程序的更多信息,请参阅这篇 Android 开发者帮助中心文章。

22

我已经更新了 webviewclient 代码

这是我的代码:

myWebView.setWebViewClient(new WebViewClient() {
@Override
public void onReceivedSslError(WebView view, final SslErrorHandler handler, SslError
error) {
final AlertDialog.Builder builder = new AlertDialog.Builder
(MyActivity.this);
builder.setMessage(R.string.sslerror_msg);
builder.setPositiveButton("continue", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
handler.proceed();
}
});
builder.setNegativeButton("cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
handler.cancel();
}
});
final AlertDialog dialog = builder.create();
dialog.show();
}
});

如果有人遇到此类问题,请分享解决方案。提前致谢。

最佳答案

经过大量查找,我找到了解决方案。如果您在上传 APK 期间收到此类型错误或来自 google play-store 的通知消息,请按照以下步骤解决此问题。

解决方法: 1. 如果您使用 webView 并重定向网站,则将此代码添加到您的 WebViewClient

myWebView.setWebViewClient(new WebViewClient() {
@Override
public void onReceivedSslError(WebView view, final SslErrorHandler handler, SslError
error) {
final AlertDialog.Builder builder = new AlertDialog.Builder
(MyActivity.this);
builder.setMessage(R.string.sslerror_msg);
builder.setPositiveButton("continue", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
handler.proceed();
}
});
builder.setNegativeButton("cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
handler.cancel();
}
});
final AlertDialog dialog = builder.create();
dialog.show();
}
});
  1. 您使用 InMobi 等任何第三方库时遇到此错误。对于 InMobi,请使用 InMobi 的最新 SDK。此问题将在 InMobi 的最新 SDK 中得到解决。

下载 InMobi SDK:http://www.inmobi.com/sdk/

有关 InMobi 的更多信息,请点击此链接:https://support.inmobi.com/monetize/integration/android/android-sdk-integration-guide/

关于android - Google Play 在上传新版本时拒绝了应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38502839/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com