mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-05-01 04:16:24 +00:00
Fix loading of liblinphone on x86 platform.
This commit is contained in:
parent
cc4668438f
commit
6803adf8d7
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
|
||||||
//Main library
|
//Main library
|
||||||
if (!hasNeonInCpuFeatures()) {
|
if (!hasNeonInCpuFeatures()) {
|
||||||
try {
|
try {
|
||||||
if (!isArmv7()) {
|
if (!isArmv7() && !Version.isX86()) {
|
||||||
System.loadLibrary("linphonearmv5");
|
System.loadLibrary("linphonearmv5");
|
||||||
} else {
|
} else {
|
||||||
System.loadLibrary("linphonenoneon");
|
System.loadLibrary("linphonenoneon");
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue