android-security - 如何找到android项目中使用的libpng库

标签 android-security

当我将我的项目上传到 google play 商店时,我收到 Libpng 库错误并且应用程序被拒绝。我不确定它在哪里使用。我用过很多库,可能就是其中之一。我怎样才能找到它的确切使用位置。

有没有办法像这样(只是一个例子)-

resolutionStrategy {
        force 'com.google.android.gms:play-services-vision:11.4.2'
}

最佳答案

要获取依赖项列表,您可以从 Gradle -> Dependencies 运行它

enter image description here

然后你可以找出导致问题的库,你可以像这样排除它

dependencies 
{
   compile 'com.android.support:support-v4:xx.0.+'
   compile ("com.xxx:xxx-commons:1.+") 
   {
       exclude group: 'junit', module: 'junit'
   }
}

关于android-security - 如何找到android项目中使用的libpng库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47882105/

相关文章:

android Google Play 警告 : SSL Error Handler Vulnerability

android - X509TrustManager 接口(interface)的不安全实现 - Google Play 服务

android - 泄露的 GCP API key - 您的应用包含暴露的 Google Cloud Platform (GCP) API key

java - Android 中加密文本时解密返回空字符串

android - 更新 opencv 库后仍存在 Libpng 漏洞问题

android - 链接到适用于 Android 的工作 webRTC 库

android - 如何在易受攻击的 Intent 方案劫持中为 WebView 使用正确的 Intent

Android 安全 - 使用 pin 存储敏感信息的密码学

google-cloud-platform - 具有公开的 GCP API key 的 YouTube 播放器 API

java - 检查安卓 :allowBackup value programmatically