Interface IDexDynamic


@Ser public interface IDexDynamic
Container for dynamic dex features, such as JNI functions.
  • Method Summary

    Modifier and Type
    Method
    Description
    getJniMethods(String javaMethodSignature)
    Retrieve the Jni methods that would match the method call.
    void
    registerDynamicJni(String javaMethodSignature, IUnit lib, long jniFunctionPointer)
    Register a new Dynamic Jni endpoint
  • Method Details

    • registerDynamicJni

      void registerDynamicJni(String javaMethodSignature, IUnit lib, long jniFunctionPointer)
      Register a new Dynamic Jni endpoint
      Parameters:
      javaMethodSignature - signature of the native Dex method
      lib - IUnit which contains the native function
      jniFunctionPointer - address of the native function called by Dex code
    • getJniMethods

      List<IJniEndpoint> getJniMethods(String javaMethodSignature)
      Retrieve the Jni methods that would match the method call.
      Parameters:
      javaMethodSignature - signature of the native Dex method
      Returns: