-
Notifications
You must be signed in to change notification settings - Fork 83
Closed
Labels
Description
Hi,
I found this issue inside the BridJ.findNativeLibraryFile() method. Following code prevents iteration over all elements inside the possibleNames list:
try {
File f;
if (isAndroid())
f = new File("lib" + name + ".so");
else
f = extractEmbeddedLibraryResource(name);
if (f == null || !f.isFile())
throw new FileNotFoundException(StringUtils.implode(possibleNames, ", "));
return f;
} catch (IOException ex) {
throw new RuntimeException(ex);
}