Without using compiler or environment variable options, how to include a reference to the
dalvik.h (/dalvik/vm/Dalvik.h) file
inside the
Parcel.cpp (/frameworks/native/libs/binder/Parcel.cpp) file in Linux/Ubuntu operating system?
I tried the following inside the Parcel.cpp file but non of them works:
#include "Dalvik.h"
#include "/dalvik/vm/Dalvik.h"
#include "/home/user/android/dalvik/vm/Dalvik.h"
Also I am aware of multiple similar questions such as 1, 2, and 3 but non of them answer my question because they use compiler or environment options or work only for Windows operating system.