【发布时间】:2016-10-18 17:01:59
【问题描述】:
当我向 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.
我现在该怎么办?
【问题讨论】:
-
“我检查了我的 APK,它使用的是 1.0.1c 版本的 OpenSSL...” - 你为什么使用 1.0.1c?
标签: android ssl openssl google-play boringssl