You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker
7ee447c011
|
4 months ago | |
---|---|---|
.. | ||
Android.bp | 4 months ago | |
README | 4 months ago | |
deodexerant.c | 4 months ago |
README
usage: adb push deodexerant /data/local adb shell chmod +x /data/local/deodexerant adb shell /data/local/deodexerant > inline.txt deodexerant is a binary that runs on a device and dumps out dalvik's inline method table. This can be used in cases where a particular built of dalvik has a non-standard inline method table for whatever reason. The output from this tool is intended to be used with the -T option for baksmali deodexerant is intended to be build within the AOSP build system. Assuming you have $MYDROID set to the root of the AOSP source tree, and $SMALI set to the root of the smali source tree, 1. mkdir -p $MYDROID/external/deodexerant 2. cp -r $SMALI/deodexerant $MYDROID/dalvik/deodexerant 3. cd $MYDROID 3. source build/envsetup.sh 4. lunch generic-eng 5. make deodexerant If all goes well, you should now have a deodexerant binary at: $MYDROID/out/target/product/generic/system/bin/deodexerant