In a android qt apk program, two so library can not find each other
Unsolved
Mobile and Embedded
-
QT version: 5.12.4
In a android qt apk program, I called a function named "xxx" in library A.so, but this A.so will call a function named "yyy" in B.so.
When this apk runs in android , it will report an error said "dlopen failed: cannot locate symbol "yyy" referenced in A.so"
In my understanding, this means, A.so can not find B.so, but these two libraries definitely locate in a folder in android device
So what can I do to deal with this issue?