INNER CODE UNIT · Java

recursively

KeepSafe/ReLinker · relinker/src/main/java/com/getkeepsafe/relinker/ReLinkerInstance.java:80

    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>
     *     <strong>Note: This is a synchronous operation</strong>
     */
    public void loadLibrary(final Context context, final String library) {
        loadLibrary(context, library, null, null);
    }

    /**
     * The same call as {@link #loadLibrary(Context, String)}, however if a {@code version} is
     * provided, then that specific version of the given library is loaded.

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…