anestisb / android-prepare-vendor

Set of scripts to automate AOSP compatible vendor blobs generation from factory images
347 stars 155 forks source link

wahoo_gfxdrv should have LOCAL_DEX_PREOPT forced to false #118

Closed thestinger closed 6 years ago

thestinger commented 6 years ago

It doesn't have any code so it breaks in CopperheadOS without that, since it enables preopt for vendor unlike AOSP. It just needs LOCAL_DEX_PREOPT := false forced like what's already done for the theme overlay apks.

anestisb commented 6 years ago

I can add some logic to the vendor generate script to annotate all archives without a bytecode file as LOCAL_DEX_PREOPT := false. That would be less painful than maintaining more exceptions manually.

I think that should work for your case too.

anestisb commented 6 years ago

Done in https://github.com/anestisb/android-prepare-vendor/commit/d1de4a8636e0c18b08b74f74067197703ef19c07

thestinger commented 6 years ago

Yeah, that should work well.