user3676087
user3676087

Reputation: 107

How to check OpenSSL library version of android application

This is related to Google Play and OpenSSL warning message. Play store recommend to use the following command to grep:

$ unzip -p YourApp.apk | strings | grep "OpenSSL"

But on Windows, this command is not running. However I have installed WinZip, WinRAR, Cygwin and MinGW. So please help me to run this command so I can come to know the issue where it is ?

Upvotes: 2

Views: 5463

Answers (1)

user3676087
user3676087

Reputation: 107

I have resolved the issue which I was facing i.e. was unable to run the command

$ unzip -p YourApp.apk | strings | grep "OpenSSL"

I installed Unzip Package in Cygwin by opening the setup of Cygwin and then It shows all the packages available for Cygwin, selected Unzip package and updated. After that above mentioned command work like charm in Cygwin terminal.

Upvotes: 2

Related Questions