-
Notifications
You must be signed in to change notification settings - Fork 628
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated *.so resources #400
Comments
请在build.gradle中使用下面类似的代码排除 packagingOptions {
pickFirst 'lib/x86/libc++_shared.so'
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
pickFirst 'lib/arm64-v8a/libc++_shared.so'
pickFirst 'lib/x86_64/libc++_shared.so'
} |
没有作用 |
anyone fix this issue? i have the same problem |
这个有办法解决吗? |
我这边的解决方案是: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the issue
I have a problem with native lib merge. I have two modules: opencv and another one that use opencv.
I connect opencv dependencies by cmake at second module like this
Where nativelib is current module lib
How can I merge this two dependencies?
Build Environment
The text was updated successfully, but these errors were encountered: