INNER CODE UNIT · Java

loadLibrary

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

    public void loadLibrary(final Context context, final String library, final String version) {
        loadLibrary(context, library, version, null);
    }

    /**
     * The same call as {@link #loadLibrary(Context, String)}, however if a
     * {@link ReLinker.LoadListener} is provided, the function is executed asynchronously.
     */
    public void loadLibrary(final Context context,
                            final String library,
                            final ReLinker.LoadListener listener) {
        loadLibrary(context, library, null, listener);
    }

    /**
     * Attemps to load the given library normally. If that fails, it loads the library utilizing
     * a workaround.
     *

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…