Reputation: 297
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
Upvotes: 8
Views: 2147
Reputation: 1
There is no "libpng" in buildbox project folders at all so you will not find it when you search. If you feel you have received this vulnerability warning in error, contact our policy support team through the Google Play Developer Help Center. Try this because if there is no libpng how can there be a security risk
Upvotes: 0
Reputation: 11749
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
Upvotes: 6