0

I know this is possible to decompile and recompile an apk. And I saw this post : Injecting code into APK before, But what I want is not decompiling or reverse engineering.

In my case I just want to make some games that uses touch events compatible with gamepad. I've seen some companies that do something like this and make android games compatible with their gamepads. Unfortunately I found no solution to inject some codes into an existing apk.

So My question is :

Is there a way to do some changes into an apk (changing touch and key events in game application) and add some codes into that without effecting the real source code ?

Community
  • 1
  • 1
Milad Faridnia
  • 9,113
  • 13
  • 65
  • 78

2 Answers2

4

For something simple like this, all you need is baksmali/smali. Just insert a single call into the assembly into your custom class, and you can write the rest in Java.

Decompiling/recompiling rarely works and is overkill for this situation anyway. Using smali will work even for obfuscated applications, though some applications calculate integrity checks on themselves and will refuse to run if modified.

Antimony
  • 37,781
  • 10
  • 100
  • 107
  • 2
    It's seems thats a good idea but could you please explain more how to do that? @Antimony – Milad Faridnia Nov 23 '14 at 06:23
  • 1
    Could you please suggest an example of the single call into the assembly in the custom class. – inquisitive May 18 '15 at 06:37
  • @Antimony Is there any way to inject `smali` single method to my `java console` application? – dafie Aug 06 '18 at 13:51
  • Desktop java apps don't use dex. You need an ordinary java classfile editor for that. – Antimony Aug 06 '18 at 14:17
  • Down-voting due to no elaboration on this procedure, and no external reference for what seems like a much better approach. – varevarao Feb 13 '19 at 18:01
  • @Varevarao. I'm confused. Do you want me to google for a smali tutorial and link it here? I assumed that anyone interested could do that themselves if necessary. – Antimony Feb 14 '19 at 01:52
  • 2
    @Antimony, if that's how you believe your answer can provide a better context to novice, and experienced learners alike, then that's the way to go. To quote the SO way of life (https://stackoverflow.com/help/how-to-answer), "Brevity is acceptable, but fuller explanations are better.", and "Links to external resources are encouraged". – varevarao Feb 15 '19 at 14:50
1

For this purpose first of all you decompile this apk into source code for decompiling the apk following purpose is used

Step 1:

Make a new folder and copy over the .apk file that you want to decode.

Now rename the extension of this .apk file to .zip (e.g. rename from filename.apk to filename.zip) and save it. Now you can access the classes.dex files, etc. At this stage you are able to see drawables but not xml and java files, so continue.

Step 2:

Now extract this .zip file in the same folder (or NEW FOLDER).

Download dex2jar (https://code.google.com/p/dex2jar/downloads/detail?name=dex2jar-0.0.9.15.zip&can=2&q=) and extract it to the same folder (or NEW FOLDER).

Move the classes.dex file into the dex2jar folder.

Now open command prompt and change directory to that folder (or NEW FOLDER). Then write d2j-dex2jar classes.dex and press enter. You now have the classes_dex2jar.jar file in the same folder.

Download java decompiler(http://jd.benow.ca/), double click on jd-gui, click on open file, and open classes.dex.dex2jar file from that folder: now you get class files.

Save all of these class files (In jd-gui, click File -> Save All Sources) by src name. At this stage you get the java source but the .xml files are still unreadable, so continue.

Step 3:

Now open another new folder

Put in the .apk file which you want to decode

Download the latest version of apktool (https://code.google.com/p/android-apktool/downloads/detail?name=apktool1.5.2.tar.bz2&can=2&q=) AND apktool install window (https://code.google.com/p/android-apktool/downloads/detail?name=apktool-install-windows-r05-ibot.tar.bz2&can=2&q= ) (both can be downloaded from the same link) and place them in the same folder

Download framework-res.apk and put it in the same folder (Not all apk file need this file, but it doesn't hurt)

Open a command window

Navigate to the root directory of APKtool and type the following command: apktool if framework-res.apk

apktool d myApp.apk (where myApp.apk denotes the filename that you want to decode)

now you get a file folder in that folder and can easily read the apk's xml files.

Step 4:

It's not any step just copy contents of both folder(in this case both new folder)to the single one

and update the source code...

Milad Faridnia
  • 9,113
  • 13
  • 65
  • 78
Akhil
  • 158
  • 5
  • 4
    Pretty much all of those steps are the least efficient and reliable way to do this. And decompiling/recompiling is rarely the answer anyway. – Antimony Nov 20 '14 at 16:36
  • Could you please give me the download link of what you mentioned. @Akhil – Milad Faridnia Nov 23 '14 at 05:37
  • I've done step 1 and 2 but I have some problems in 3. first I couldn't find framework-res.apk download link. Then I continued without that apk but I got a folder with so many .smali files in it and no xml file. @Akhil – Milad Faridnia Nov 23 '14 at 06:20
  • Why changing file extension is a thing? That does exactly nothing – Ben Mar 22 '18 at 15:55