AS编译时More than one file was found with OS independent path ‘lib/arm64-v8a/libc++_shared.so‘. If you
·
今天徒弟再次惨嚎
原来他被老大安排了一个集成sdk的任务
问题
集成sdk的时候,android studio报错
More than one file was found with OS independent path 'lib/arm64-v8a/libc++_shared.so'. If you are using jniLibs and CMake IMPORTED targets
解决方法
找到对应工程的build.gradle
android {
packagingOptions {
pickFirst 'lib/arm64-v8a/libc++_shared.so'
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
}
}
更多推荐
所有评论(0)