giangqaz
giangqaz

Reputation: 105

Google Play and OpenSSL vulnerability warning

When I submit new APK to Google Play, my APK is rejected with message:

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"

I checked my APK, and it using 1.0.1c version of OpenSSL. But from Android 6.0, Google recommends using BoringSSL instead of OpenSSL.

What should I do now?

Upvotes: 0

Views: 769

Answers (1)

Alex
Alex

Reputation: 616

According to link, it is enough to update OpenSSL version to the latest. Also, you can use BoringSSL if you want, here and here are useful links.

Upvotes: 1

Related Questions