Fix loading of liblinphone on x86 platform.

This commit is contained in:
Ghislain MARY 2012-08-22 09:21:58 +02:00
parent e1e58fbe4c
commit 4e34218a41

View file

@ -71,7 +71,7 @@ public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
//Main library
if (!hasNeonInCpuFeatures()) {
try {
if (!isArmv7()) {
if (!isArmv7() && !Version.isX86()) {
System.loadLibrary("linphonearmv5");
} else {
System.loadLibrary("linphonenoneon");