Skip to content
This repository was archived by the owner on Oct 19, 2025. It is now read-only.
This repository was archived by the owner on Oct 19, 2025. It is now read-only.

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

@alysalee

Description

@alysalee
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;
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions