"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

Problems with architectures and conflicts

I have a project that worked very well until I started to present conflicts with other dependencies that used native libs that the Vuforia used.

With these conflicts it presented the error of 'Vuforia.so can not be loaded'. Like PayPal, renderscript and others. To fix this I used a split apk code:

splits {         abi {             enable true             reset()             include 'armeabi-v7a'             universalApk false         }     }

 

But with this code I no longer have support for other architectures that were supported. I do not know how to do to support the other architectures that I had support and that today has conflicts. can you help me?