Don't patch build path to DEX jar in dex_preopt_config_merger.py.
The initial path value is correct, there's no need to patch it. Bug: 132357300 Test: lunch aosp_cf_x86_64_phone-userdebug && m && launch_cvd \ adb wait-for-device && adb root && adb logcat \ | grep -E 'ClassLoaderContext [a-z ]+ mismatch' # empty grep output, no errors Change-Id: Iaa9171e7db348ad469ec56b977b5f2226f353284
This commit is contained in:
parent
015fd9e71b
commit
38cd0624f3
|
@ -72,8 +72,6 @@ def main():
|
|||
clc = clcs[lib]
|
||||
if lib in uses_libs:
|
||||
ulib = uses_libs[lib]
|
||||
# On-host (build) path to the dependency DEX jar file.
|
||||
clc['Host'] = ulib['BuildPath']
|
||||
# On-device (install) path to the dependency DEX jar file.
|
||||
clc['Device'] = ulib['DexLocation']
|
||||
# CLC of the dependency becomes a subcontext. We only need sub-CLC for
|
||||
|
|
Loading…
Reference in New Issue