0

Recently I updated my app and tried to upload the Google Play Store again. But my app rejected several times due to this warning

Your application uses an old version ( not secure one ) of Lib WebViewClient.onReceivedSslError . Check this article https://support.google.com/faqs/answer/7071387 to know more about it Vulnerable Classes com.ironsource.mobilcore.Utils$b

but unfortunately I cannot find WebViewClient.onReceivedSslError on my app. actually what I did on my new version is just update Google AdMob Ads SDK and implement some Restful api using ASynchttpclient.

Is there any way to avoid this warning and upload my new updated app?

Eric S
  • 1,336
  • 15
  • 20
Kevin wilson
  • 1
  • 1
  • 1
  • search for method onReceivedSslError not webviewclient.onReceivedSslError http://stackoverflow.com/questions/36050741/webview-avoid-security-alert-from-google-play-upon-implementation-of-onreceiveds ( also include any library that you may have used in your app ) – Amod Gokhale Dec 09 '16 at 16:23
  • Thank you for your comment. I tried to find the function onRecievedSslError, but I cannot find it except for come.ironsource.mobilecore. how can I fix it? – Kevin wilson Dec 09 '16 at 20:20
  • see solution provided in this link http://stackoverflow.com/questions/35465916/google-play-security-alert-for-insecure-trustmanager/35531561 – Amod Gokhale Dec 11 '16 at 14:13

1 Answers1

0

As mentioned in the alert, the issue is with the class com.ironsource.mobilcore.Utils$b. You need to figure out which SDK that class comes from and update it.

Antimony
  • 37,781
  • 10
  • 100
  • 107