标签: android-security
当我将我的项目上传到Google Play商店时,我收到了Libpng库错误,应用被拒绝了。我不知道它在哪里使用过。我曾经使用过很多库可能就是其中之一。我怎样才能准确找到它的使用位置。
有没有办法通过这样的方式完全强制(仅举例) -
resolutionStrategy { force 'com.google.android.gms:play-services-vision:11.4.2' }
答案 0 :(得分:0)
要获取依赖项列表,可以从Gradle->依赖项
然后,您可以找出导致问题的库,并可以像这样排除它
dependencies { compile 'com.android.support:support-v4:xx.0.+' compile ("com.xxx:xxx-commons:1.+") { exclude group: 'junit', module: 'junit' } }