-2

Google play reject my app and send me this email :

This app uses software that contains security vulnerabilities for users or allows the collection of user data without proper disclosure.

Below is the list of issues and the corresponding APK versions that were detected in your recent submission. Please upgrade your app(s) as soon as possible and increment the version number of the upgraded APK.

Please I need someone help to update openssl for android app to re-submit to google play.

Thanks

jww
  • 97,681
  • 90
  • 411
  • 885
Ali
  • 1
  • 2
  • Also see [Google Play and OpenSSL warning message](http://stackoverflow.com/q/24197777), [How to grep or search .jar files for OpenSSL?](http://stackoverflow.com/q/36213149) and [How to determine which dependency causes Google Play OpenSSL warning?](http://stackoverflow.com/q/38187257) – jww Jul 30 '16 at 02:38

2 Answers2

0
  1. You can Download OpenSSL from here

  2. Cross-compile OpenSSL for Android Link

  3. Rebuild App

Gurjit Singh
  • 1,060
  • 2
  • 13
  • 16
0

Download stable version of OpenSSL [1.0.2] from:: OpenSSL
Cross-compile OpenSSL for Android
Rebuild your app, linking against the cross-compiled library

Note: your shared object must use static linking against OpenSSL (libssl.a and libcrypto.a). You cannot link your shared object against the OpenSSL shared objects. If you link against shared objects, then Android's Zygote (the parent of all processes), will load its down-level version and your 1.0.2 version will never load.

Herbal
  • 217
  • 2
  • 10
  • hi, singh please how to update openssl for my app in windows 10 ?? – Ali Jul 30 '16 at 01:02
  • You should have cited the question and answer you lifted that from: [Update Android app to latest version of OpenSSL](http://stackoverflow.com/q/30122019/608639). – jww Jul 30 '16 at 04:02