当我向Google Play提交新的APK时,我的APK被拒绝并显示消息:
Vulnerability APK Version(s)
OpenSSL
The vulnerabilities were fixed in OpenSSL versions beginning with 1.0.1h, 1.0.0m, and 0.9.8za.
To confirm your OpenSSL version, you can do a grep via:
$ unzip -p YourApp.apk | strings | grep "OpenSSL"
我检查了我的APK,并使用1.0.1c版本的OpenSSL。但是从Android 6.0开始,Google recommends using BoringSSL instead of OpenSSL。
我现在该怎么办?