Frida Docs Unified
    Preparing search index...
    module: Module

    Gets the IL2CPP module (a native library), that is where the IL2CPP exports will be searched for (see Il2Cpp.exports).

    The module is located by its name:

    • Android: libil2cpp.so
    • Linux: GameAssembly.so
    • Windows: GameAssembly.dll
    • iOS: UnityFramework
    • macOS: GameAssembly.dylib

    On iOS and macOS, IL2CPP exports may be located within a module having a different name.

    In any case, it is possible to override or set the IL2CPP module name using Il2Cpp.$config.moduleName:

    Il2Cpp.$config.moduleName = "CustomName.dylib";

    Il2Cpp.perform(() => {
    // ...
    });