How to modify/add to Android App Source code?

Search This thread

XDM inc

Senior Member
Mar 7, 2011
1,646
375
Xiaomi Mi 9
Google Pixel Fold
ok so im trying to learn to compile android apps from source code and my first project is a forgotten android emulator called n64oid. I Want to add or port the touchpad implementation from Mupen64 AE.why you might ask? Well in n64oid the touchpads work in ICS but not at all in GB.

i find n64oid to be the most stable and fast 64 emulator out there but the touchpads dont work in GB

So i either do One of the following

  • Downport the excising n64oid ICS Touchpad in support to GB
  • Port the mupen64 AE touchpad support to n64oid
  • Add the touchpad support to n64oid GB
 

TheScriptKitty

Senior Member
Dec 11, 2013
360
806
Mexico City
Xiaomi Poco F3
Procedure for decoding .apk files, step-by-step method

ok so im trying to learn to compile android apps from source code and my first project is a forgotten android emulator called n64oid. I Want to add or port the touchpad implementation from Mupen64 AE.why you might ask? Well in n64oid the touchpads work in ICS but not at all in GB.

i find n64oid to be the most stable and fast 64 emulator out there but the touchpads dont work in GB

So i either do One of the following

  • Downport the excising n64oid ICS Touchpad in support to GB
  • Port the mupen64 AE touchpad support to n64oid
  • Add the touchpad support to n64oid GB



Procedure for decoding .apk files, step-by-step method:

Step 1:

Make a new folder and put .apk file in it (which you want to decode). Now rename the extension of this .apk file to .zip (eg.: rename from filename.apk to filename.zip) and save it. Now you get classes.dex files, etc. At this stage you are able to see drawable but not xml and java files, so continue.

Step 2:

Now extract this zip apk file in the same folder (or NEW FOLDER). Now download dex2jar from this link http://code.google.com/p/dex2jar/ 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 dex2jar classes.dex and press enter. Now you get classes.dex.dex2jar file in the same folder. Then download java decompiler from http://jd.benow.ca/ and now double click on jd-gui and click on open file. Then open classes.dex.dex2jar file from that folder. Now you get class files and save all these class files (click on file then click "save all sources" in jd-gui) by src name. At this stage you get java source but the xml files are still unreadable, so continue.

Step 3:

Now open another new folder and put these files

  1. put .apk file which you want to decode
  2. download apktool v1.x AND apktool install window (both can be downloaded at the same location) and put in the same folder
  3. download framework-res.apk file and put in the same folder (Not all apk file need framework-res.apk file)
  4. Open a command window
  5. Navigate to the root directory of APKtool and type the following command: apktool if framework-res.apk
  6. apktool d "fname".apk ("fname" denotes filename which you want to decode)
now you get a file folder in that folder and now you can easily read xml files also.

Step 4:

It's not any step just copy contents of both folder(in this case both new folder)to the single oneand now enjoy with source code...

Google is your friend...

Procedure for decoding .apk files, step-by-step method
 
Last edited:

XDM inc

Senior Member
Mar 7, 2011
1,646
375
Xiaomi Mi 9
Google Pixel Fold
Procedure for decoding .apk files, step-by-step method:

Step 1:

Make a new folder and put .apk file in it (which you want to decode). Now rename the extension of this .apk file to .zip (eg.: rename from filename.apk to filename.zip) and save it. Now you get classes.dex files, etc. At this stage you are able to see drawable but not xml and java files, so continue.

Step 2:

Now extract this zip apk file in the same folder (or NEW FOLDER). Now download dex2jar from this link http://code.google.com/p/dex2jar/ 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 dex2jar classes.dex and press enter. Now you get classes.dex.dex2jar file in the same folder. Then download java decompiler from http://jd.benow.ca/ and now double click on jd-gui and click on open file. Then open classes.dex.dex2jar file from that folder. Now you get class files and save all these class files (click on file then click "save all sources" in jd-gui) by src name. At this stage you get java source but the xml files are still unreadable, so continue.

Step 3:

Now open another new folder and put these files

  1. put .apk file which you want to decode
  2. download apktool v1.x AND apktool install window (both can be downloaded at the same location) and put in the same folder
  3. download framework-res.apk file and put in the same folder (Not all apk file need framework-res.apk file)
  4. Open a command window
  5. Navigate to the root directory of APKtool and type the following command: apktool if framework-res.apk
  6. apktool d "fname".apk ("fname" denotes filename which you want to decode)
now you get a file folder in that folder and now you can easily read xml files also.

Step 4:

It's not any step just copy contents of both folder(in this case both new folder)to the single oneand now enjoy with source code...

Google is your friend...

Procedure for decoding .apk files, step-by-step method

thats nice and all but i already know how to deconpile/ reconpile. + i have the source codes i need to add touchpad support to n64oid on GB
 

TheScriptKitty

Senior Member
Dec 11, 2013
360
806
Mexico City
Xiaomi Poco F3
Xperia™ PLAY touch pad tutorial

thats nice and all but i already know how to deconpile/ reconpile. + i have the source codes i need to add touchpad support to n64oid on GB





Xperia™ PLAY touch pad tutorial

vnulmdC.png

Google is your friend