Will the so libraries of multiple third-party SDK in Android conflict?

in Android development, third-party SDK, is often used. When a third-party SDK is introduced, some third-party so libraries are required to be introduced. How to introduce so libraries when there are multiple SDK that need to be introduced? Are multiple so libraries directly incompatible or conflicting?

Development tools: Android Studio

Mar.28,2021

introduces SDK's own private so library. As long as you do not introduce SDK twice, there will be no conflict.

so is not something magical., NDK (CPP) writes the android service. It takes more than one to push SDK.


try to use a unified architecture, for example, one provides armeabi, and the other provides armeabi and armeabi-v8, reserved armeabi

Menu