I have developed an app using kivy and built the apk file using buildozer. While releasing it on google play, I am getting the following error from google.
Your app is using a version of OpenSSL containing a security vulnerability. Please see this Google Help Center article for details, including the deadline for fixing the vulnerability. Affects APK version 1.
On forums, people ask to check the openssl version by running the following command
unzip -p MyApp.apk | strings | grep "OpenSSL"
The above command gave me blank result.
While packaging the apk, i used the following steps:
- buildozer android release
- sign and align using apksigner
Please note that the system on which I created the keyfile have OpenSSL 1.0.2f
I want to know how to fix this issue.