I'm working on Android application in CentOS environment.
Someday ago, I already upgraded OpenSSL verion from 1.0.1h -> 1.0.2g
Version checking command is working fine!
openssl version
OpenSSL 1.0.2g 1 Mar 2016
However, after application is built I check the OpenSSL version inside the app. It's still using the old version of OpenSSL.
unzip -p myApp.apk | strings | grep "OpenSSl"
A lot of string related to "1.0.1h" is showing
Has anyone seen this problem ?
Thanks