user3742209
user3742209

Reputation: 81

ExtensionMacros.h: No such file or directory

Although this file exists in the extensions folder but still i get this error. I have followed many solution but struck on this error. please help me. In my extensions/Android.mk file I have also included

LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/..

Upvotes: 1

Views: 499

Answers (1)

yangguang1029
yangguang1029

Reputation: 1823

because ExtensionMacros.h is in the path $(LOCAL_PATH) i suggest you add "LOCAL_EXPORT_C_INCLUDES += $(LOCAL_PATH)"

or change to #include "extensions/ExtensionMacros.h"

Upvotes: 2

Related Questions