Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Security alert about libpng in my google play console

I received a security alert in my google play console about 2 applications ( games made by buildbox ) , the alert said that my application uses a version of libpng which presents a security flaw , I can't find this lib in my project , any solution please ? they gives me this link also https://support.google.com/faqs/answer/7011127

like image 283
Med Anis Avatar asked Jun 15 '16 17:06

Med Anis


1 Answers

If you are on a mac/linux machine, you can run the following command in your app directory to find which or your library is using libpng:

sudo find . -type f -exec fgrep libpng {} \; -print
like image 159
Distwo Avatar answered Oct 05 '22 03:10

Distwo