From 50c3ab6ac155cf88dcb4478570da3eb8ed578a6b Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Mon, 20 Jan 2020 12:37:52 +0900 Subject: [PATCH] Fixed a wrong AIDL import path AIDL import path should point to a root directory where relative path to an AIDL file encodes the fully qualified name of the type in the file. Since libvold_binder imports types like android.os.incremental.IncrementalFileSystemControlParcel which are under frameworks/base/core/java, the import path should set to the path, not to the sub directory that directly has the AIDL files. Bug: 147918827 Test: m Change-Id: Ic4941578813eced5a7eb59a0656c10b76e902515 --- Android.bp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.bp b/Android.bp index 8d88e5f..fd6ef1d 100644 --- a/Android.bp +++ b/Android.bp @@ -81,7 +81,7 @@ cc_library_static { local_include_dirs: ["binder"], include_dirs: [ "frameworks/native/aidl/binder", - "frameworks/base/core/java/android/os/incremental", + "frameworks/base/core/java", ], export_aidl_headers: true, },