java - How to create framework.odex in android -
i'm trying make changes in android os downloaded aosp, make changes , build it.
now want replace framework.jar
, framework2.jar
on device (nexus 5, 4.4.4) see "odex" device - means - have framework.odex
, frameork2.odex
.
can me , explain me how create 2 files? google found how odex apk , not framework.
thank guys!
why don't try flash images device ? need build complete aosp source code , flash device below commands :
adb reboot bootloader img_path="./out/target/product/grouper"; # erase userdata fastboot -w echo flashing system .. fastboot flash system $img_path/system.img echo flashig boot ... fastboot flash boot $img_path/boot.img echo flashin recovery .. fastboot flash recovery $img_path/recovery.img echo rebooting device ... fastboot reboot
the way trying, framework.jar might having different signature system signature.
Comments
Post a Comment