Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug: package com.facebook.soloader.nativeloader does not exist #59

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Jun 18, 2021

  1. Fix bug: package com.facebook.soloader.nativeloader does not exist

    When loading jni libraries which used fbjni, such as writing like
    this:
        System.loadLibrary("mylib");
    there will be a crash said that
        NativeLoader has not been initialized.  To use standard native
        library loading, call NativeLoader.init(new SystemDelegate()).
    Since NativeLoader is in package com.facebook.soloader:nativeloader,
    which is hidden from the user, a user have to manually import this
    module.
    LiuYafei authored and LiuYafei committed Jun 18, 2021
    Configuration menu
    Copy the full SHA
    ba0e837 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2021

  1. Make Java common used exceptions public for users.

    Some Java codes take an exception as a paramter (e.g.
    `public void callFailed(Call call, IOException ioe)` in okhttp)
    Make JXXExceptions public to save time.
    LiuYafei authored and LiuYafei committed Jun 22, 2021
    Configuration menu
    Copy the full SHA
    e1639e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1df3db3 View commit details
    Browse the repository at this point in the history