Fix path to check if the msopenh264 plugin is present on Android.

This commit is contained in:
Ghislain MARY 2017-06-28 13:52:08 +02:00
parent cbc273d8b8
commit a906cfa658

View file

@ -79,7 +79,7 @@ public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
}
private boolean loadingDownloadedOpenH264(Context context) {
File file = new File(context.getFilesDir()+"/../lib/libmsopenh264.so");
File file = new File(context.getApplicationInfo().nativeLibraryDir+"/libmsopenh264.so");
if (!file.exists()) {
Log.i("LinphoneCoreFactoryImpl"," libmsopenh264 not found, we disable the download of Openh264");