INNER CODE UNIT · Java
force
KeepSafe/ReLinker · relinker/src/main/java/com/getkeepsafe/relinker/ReLinkerInstance.java:71
public ReLinkerInstance force() {
this.force = true;
return this;
}
/**
* Enables recursive library loading to resolve and load shared object -> shared object
* defined dependencies
*/
public ReLinkerInstance recursively() {
this.recursive = true;
return this;
}
/**
* Utilizes the regular system call to attempt to load a native library. If a failure occurs,
* then the function extracts native .so library out of the app's APK and attempts to load it.
* <p>