1Support functions for Android's class libraries 2 3 4These are VM-agnostic native functions that implement methods for system 5class libraries. All code here: 6 7 - MUST be associated with a standard java.* class (no Android-specific stuff) 8 - MUST use JNI 9 - SHOULD be written in C rather than C++ (it's usually smaller and all of 10 our VMs are written in C) 11 12Some helper functions are defined in ../include/nativehelper/JNIHelp.h. 13 14