OR博客
More than one file was found with OS independent path 'lib/armeabi-v7a/libnms.so'
苗锦洲
创建于:2020-08-14 11:20:04
0
33
280
0
More than one file was found with OS independent path 'lib/armeabi-v7a/libnms.so'

More than one file was found with OS independent path 'lib/armeabi-v7a/libnms.so'

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/haha223545/article/details/86686696

解决方案:

在 app 下的 build.gradle 中加入以下代码:

android { ... // Fix: More than one file was found packagingOptions { pickFirst 'lib/armeabi-v7a/libnms.so' } }

搞定 !

评论
楼主暂时不想被别人评论哦~