我使用Ionic平台和Cordova开发了一款应用程序。在我将其提交到Google Playstore后,我收到了有关“安全漏洞”的电子邮件。
此应用使用包含用户安全漏洞的软件,或允许在没有正确披露的情况下收集用户数据。
Here's how they wanted to address WebView SSL Error Handler alerts.
我尝试使用AlertDialog.Builder作为this link解决问题的方法。
我将代码复制到SystemWebviewClient.java
final AlertDialog.Builder builder = new AlertDialog.Builder(this);
...
但是它不接受“ this ”作为上下文参数。
您怎么看?