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

为什么支持2.3 但是最新版本loaddexposedlib的时候 没有了呢? #55

Open
alysalee opened this issue Dec 17, 2015 · 1 comment

Comments

@alysalee
Copy link

private static boolean loadDexposedLib(Context context) {
    // load dexposed lib for hook.
    try {
        if (android.os.Build.VERSION.SDK_INT == 22){
            System.loadLibrary("dexposed_l51");
        } else if (android.os.Build.VERSION.SDK_INT > 19 && android.os.Build.VERSION.SDK_INT <= 21){
            System.loadLibrary("dexposed_l");
        } else if (android.os.Build.VERSION.SDK_INT > 14){
            System.loadLibrary("dexposed");
        } else {
            return false;
        }
        return true;
    } catch (Throwable e) {
        return false;
    }
}
@hwjump
Copy link
Contributor

hwjump commented Dec 21, 2015

plz refer #20.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants