| 129 | } |
| 130 | |
| 131 | jlongArray VmCore::loadEmptyDex(JNIEnv *env) { |
| 132 | env = ensureEnvCreated(); |
| 133 | return (jlongArray) env->CallStaticObjectMethod(VMEnv.VMCoreClass, VMEnv.loadEmptyDex); |
| 134 | } |
| 135 | |
| 136 | int VmCore::getApiLevel() { |
| 137 | return VMEnv.api_level; |
nothing calls this directly
no test coverage detected