| 123 | } |
| 124 | |
| 125 | bool disableResourceLoading(JNIEnv *env, jclass clazz) { |
| 126 | ALOGD("set disableResourceLoading"); |
| 127 | if(!disable_resource_loading()){ |
| 128 | ALOGD("set disableResourceLoading Fail!!!"); |
| 129 | return false; |
| 130 | } |
| 131 | return true; |
| 132 | } |
| 133 | |
| 134 | static JNINativeMethod gMethods[] = { |
| 135 | {"disableHiddenApi", "()Z", (void *) disableHiddenApi}, |
nothing calls this directly
no test coverage detected