diff --git a/debuggerd/Android.bp b/debuggerd/Android.bp index f713ff2df..9ca0eba6e 100644 --- a/debuggerd/Android.bp +++ b/debuggerd/Android.bp @@ -210,6 +210,9 @@ cc_library_static { "libcutils", "liblog", ], + runtime_libs: [ + "libdexfile", // libdexfile_support dependency + ], whole_static_libs: [ "libasync_safe", @@ -225,11 +228,17 @@ cc_library_static { exclude_static_libs: [ "libdexfile_support", ], + exclude_runtime_libs: [ + "libdexfile", + ], }, vendor_ramdisk: { exclude_static_libs: [ "libdexfile_support", ], + exclude_runtime_libs: [ + "libdexfile", + ], }, },