Provide library path to android.test.base for dexpreopt.
It may be needed in class loader context if the target API version is less than 30. Test: lunch aosp_cf_x86_phone-userdebug && m Change-Id: Ifa5ab18d1dc322184100207ad6eee4bdcf74deb0
This commit is contained in:
parent
61e1cc7317
commit
0b0cf4c411
|
@ -67,6 +67,10 @@ if [[ "${target_sdk_version}" -lt "29" ]]; then
|
||||||
add_to_contexts "${conditional_host_libs_29}" "${conditional_target_libs_29}"
|
add_to_contexts "${conditional_host_libs_29}" "${conditional_target_libs_29}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ "${target_sdk_version}" -lt "30" ]]; then
|
||||||
|
add_to_contexts "${conditional_host_libs_30}" "${conditional_target_libs_30}"
|
||||||
|
fi
|
||||||
|
|
||||||
add_to_contexts "${dex_preopt_host_libraries}" "${dex_preopt_target_libraries}"
|
add_to_contexts "${dex_preopt_host_libraries}" "${dex_preopt_target_libraries}"
|
||||||
|
|
||||||
# Generate the actual context string.
|
# Generate the actual context string.
|
||||||
|
|
|
@ -195,6 +195,7 @@ ifdef LOCAL_DEX_PREOPT
|
||||||
org.apache.http.legacy \
|
org.apache.http.legacy \
|
||||||
android.hidl.base-V1.0-java \
|
android.hidl.base-V1.0-java \
|
||||||
android.hidl.manager-V1.0-java \
|
android.hidl.manager-V1.0-java \
|
||||||
|
android.test.base \
|
||||||
|
|
||||||
my_dexpreopt_libs := $(sort \
|
my_dexpreopt_libs := $(sort \
|
||||||
$(LOCAL_USES_LIBRARIES) \
|
$(LOCAL_USES_LIBRARIES) \
|
||||||
|
|
Loading…
Reference in New Issue