• Home
  • History
  • Annotate
  • only in /external/smali/deodexerant/
NameDateSize

..12-Mar-20154 KiB

Android.mk12-Mar-20151.7 KiB

deodexerant.c12-Mar-20152.7 KiB

README12-Mar-2015919

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