One more fix for native lib loader
This commit is contained in:
parent
b33d5f0786
commit
6e386c5884
@ -76,6 +76,12 @@ public class NativeLoader {
|
||||
}
|
||||
out.close();
|
||||
|
||||
if (Build.VERSION.SDK_INT >= 9) {
|
||||
destLocalFile.setReadable(true, false);
|
||||
destLocalFile.setExecutable(true, false);
|
||||
destLocalFile.setWritable(true);
|
||||
}
|
||||
|
||||
try {
|
||||
System.load(destLocalFile.getAbsolutePath());
|
||||
nativeLoaded = true;
|
||||
|
Loading…
Reference in New Issue
Block a user