ReLinker
ReLinker copied to clipboard
A robust native library loader for Android.
Relinker should be thread safe, but `ReLinkerInstance` implement code: ```java public class ReLinkerInstance { private static final String LIB_DIR = "lib"; protected final Set loadedLibraries = new HashSet(); ...... }...
Hi, Many thanks for this helpful library. My minSdkVersion is 23 so theoretically I don't need to use ReLinker but I've found it somehow during my debugging. My issue is...
Please, this is my Error Stack: java.util.ConcurrentModificationException at java.util.ArrayList$Itr.next(ArrayList.java:860) at dalvik.system.BaseDexClassLoader.getLdLibraryPath(BaseDexClassLoader.java:204) at java.lang.Runtime.doLoad(Runtime.java:1093) at java.lang.Runtime.loadLibrary0(Runtime.java:1014) at java.lang.System.loadLibrary(System.java:1657) at com.getkeepsafe.relinker.SystemLibraryLoader.loadLibrary(SystemLibraryLoader.java:25) at com.getkeepsafe.relinker.ReLinkerInstance.loadLibraryInternal(ReLinkerInstance.java:163) at com.getkeepsafe.relinker.ReLinkerInstance.access$000(ReLinkerInstance.java:31) at com.getkeepsafe.relinker.ReLinkerInstance$1.run(ReLinkerInstance.java:142) at java.lang.Thread.run(Thread.java:764) can you solve...
* change ReLinkerInstance#loadedLibraries to CopyOnWriteArraySet
com.getkeepsafe.relinker.ApkLibraryinstaller.installLibrary **Application Crash**
### What has changed To reduce ambiguity, we would want to report unscannable files whenever we're querying for `getSupportedABIs()`. This is done by: 1. Employing an object which could store...
Similar to previous reports (#98, #93, and #88), we've encountered `MissingLibraryException` errors in Production that haven't been reproducible locally. The specific error message is: ``` Fatal Exception: com.getkeepsafe.relinker.MissingLibraryException: Could not...
help
Can I call the relinker.loadlibrary method from a class? I have an Xposed module, but I can't get the context of the MainActivity. Please help. before this, i use system.loadlibray....