blurkit-android icon indicating copy to clipboard operation
blurkit-android copied to clipboard

Conflict with CameraKit library while using both together

Open usmanrana07 opened this issue 6 years ago • 2 comments

I'm using CameraKit and BlurKit together and it gives following error while compiling the project. More than one file was found with OS independent path 'lib/armeabi-v7a/libRSSupport.so'

usmanrana07 avatar Feb 18 '19 07:02 usmanrana07

I'm using CameraKit and BlurKit together and it gives following error while compiling the project. More than one file was found with OS independent path 'lib/armeabi-v7a/libRSSupport.so'

Hello, can you tell me how you solved this problem?

wuting1994 avatar Apr 02 '19 12:04 wuting1994

You can place this in your app gradle like this:

android { ... packagingOptions { pickFirst 'lib/arm64-v8a/librsjni.so' pickFirst 'lib/armeabi-v7a/libRSSupport.so' pickFirst 'lib/x86/librsjni.so' pickFirst 'lib/x86_64/librsjni.so' pickFirst 'lib/arm64-v8a/libRSSupport.so' pickFirst 'lib/armeabi-v7a/librsjni.so' pickFirst 'lib/x86/libRSSupport.so' pickFirst 'lib/x86_64/libRSSupport.so' } }

usmanrana07 avatar Apr 03 '19 06:04 usmanrana07