AttachCurrentThread()
Attaches the current thread to a Java (Dalvik) VM.
Read time 1 minuteLast updated 2 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.AndroidJNIModule
public static int AttachCurrentThread()
Returns
Type | Description |
|---|---|
| int |
Remarks
A thread must be attached to the VM before any other JNI calls can be made.
Returns 0 on success; returns a negative number on failure.
Additional Resources: Java Native Interface Specification (Oracle)