Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


AndroidJNIHelper

Helper interface for JNI interaction; signature creation and method lookups. Note: Using raw JNI functions requires advanced knowledge of the Android Java Native Interface (JNI). Please take note.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Class
  • Namespace: UnityEngine
  • Assembly: UnityEngine.AndroidJNIModule
public static class AndroidJNIHelper

Static Properties

Property

Description

debugSet
debug
to true to log calls through the AndroidJNIHelper.

Static Methods

Method

Description

BoxConvert primitive to it's object counterpart.
ConvertFromJNIArrayCreates a managed array from a Java array.
ConvertToJNIArrayCreates a Java array from a managed array.
CreateJavaProxyCreates a java proxy object which connects to the supplied proxy implementation.
CreateJavaRunnableCreates a UnityJavaRunnable object (implements java.lang.Runnable).
CreateJNIArgArrayCreates the parameter array to be used as argument list when invoking Java code through CallMethod() in AndroidJNI.
DeleteJNIArgArrayDeletes any local jni references previously allocated by CreateJNIArgArray().
GetConstructorIDScans a particular Java class for a constructor method matching a signature.
GetFieldIDScans a particular Java class for a field matching a name and a signature.
GetMethodIDScans a particular Java class for a method matching a name and a signature.
GetSignatureCreates the JNI signature string for particular object type.
UnboxConverts Java object of a boxed type to its primitive counterpart.