Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Android.mk | D | 03-May-2024 | 1.7 KiB | 45 | 8 | |
README | D | 03-May-2024 | 919 | 27 | 20 | |
deodexerant.c | D | 03-May-2024 | 3.2 KiB | 94 | 46 |
README
1usage: 2adb push deodexerant /data/local 3adb shell chmod +x /data/local/deodexerant 4adb shell /data/local/deodexerant > inline.txt 5 6deodexerant is a binary that runs on a device and dumps out dalvik's inline 7method table. 8 9This can be used in cases where a particular built of dalvik has a non-standard 10inline method table for whatever reason. The output from this tool is intended 11to be used with the -T option for baksmali 12 13deodexerant is intended to be build within the AOSP build system. Assuming 14you have $MYDROID set to the root of the AOSP source tree, and $SMALI 15set to the root of the smali source tree, 16 171. mkdir -p $MYDROID/external/deodexerant 182. cp -r $SMALI/deodexerant $MYDROID/dalvik/deodexerant 193. cd $MYDROID 203. source build/envsetup.sh 214. lunch generic-eng 225. make deodexerant 23 24If all goes well, you should now have a deodexerant binary at: 25 26$MYDROID/out/target/product/generic/system/bin/deodexerant 27