Question

I am trying to decode htc's messaging app's apk file using dex2jar and apk-tools . I reversed more than 30 apps perfectly without any trouble ! but I can't do same thing with htc's app ! can any one help me to get out of this problem?

Problem 1 (While dex2jar decoding) :

enter image description here

Note : I also used dex2jar Mms.apk but d2j-dex2jar Mms.apk is more desirable.

Problem 2 (While Getting Resource appk-tool) :

enter image description here

I know I need to add com.htc.resource.apk framework but don't know how to do it !

Was it helpful?

Solution

You are trying to unpack a system application. classes.dex files are ripped from system applications and saved as optimized ODEX files. You can read more from here

So before using dex2jar on these APKs, you should convert ODEX file back to DEX and put them in APK. Or you can just use dex2jar on converted DEX files..

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top