The Android Open Source Project | 7f844dd | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 1 | Support functions for Android's class libraries |
| 2 | |
| 3 | |
| 4 | These are VM-agnostic native functions that implement methods for system |
| 5 | class libraries. All code here: |
| 6 | |
Elliott Hughes | e4239ae | 2009-10-20 16:59:01 -0700 | [diff] [blame] | 7 | - MUST not be associated with an android.* class (that code lives in |
| 8 | frameworks/base/). |
| 9 | - SHOULD be written in C rather than C++ where possible. |
The Android Open Source Project | 7f844dd | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 10 | |
Elliott Hughes | e4239ae | 2009-10-20 16:59:01 -0700 | [diff] [blame] | 11 | Some helper functions are defined in include/nativehelper/JNIHelp.h. |