Hi,
I have proprietary jar library with few AIDL files in it, which i need to use in my project.
During AOSP build i receive errors, that includes from AIDL files, are not valid.
Here is Android.mk for this jar:
include $(CLEAR_VARS)
LOCAL_MODULE := proplib
LOCAL_MODULE_TAGS := optional
LOCAL_CERTIFICATE := platform
LOCAL_SRC_FILES := proplib.jar
LOCAL_MODULE_CLASS := JAVA_LIBRARIES
LOCAL_MODULE_SUFFIX := $(COMMON_JAVA_PACKAGE_SUFFIX)
include $(BUILD_PREBUILT)
I was trying different build options - BUILD_MULTI_PREBUILD, LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES etc.
The problem is that for this AIDL files Stub and Proxies are not generated, and when building my client application I'm not able to access them.
Can someone give me advice how to fix such situation?