-1

So I have an android game which is using unity, and I looked for scripts inside dll and know exactly what should I change in C# code, I mean I reverse engineered this app almost completely. What should I do next? Complile it? But how?

user3071284
  • 6,955
  • 6
  • 43
  • 57
rint
  • 255
  • 1
  • 3
  • 10

2 Answers2

1

You can use use AAPT (Android Asset Packaging Tool) to decompile-recompile apks. For more information how to use it, below references are given:

http://elinux.org/Android_aapt

What is aapt(Android Asset Packaging Tool) & How it works?

ReverseEngineering

Community
  • 1
  • 1
Geeky Singh
  • 1,003
  • 9
  • 20
0

Hope you can't do that with Proguard Obfuscation limit.! Especially, for Android applications which is written by Android Studio.

I mean, if one app compiled(for android studio f.g), Progaurd will do the Obfuscation and you can't even see the right codes.

ʍѳђઽ૯ท
  • 16,646
  • 7
  • 53
  • 108
  • The app which I am working on is not obfuscated, the code is clear, but I need to compile this app with slight changes of code. Is it possible to compile with android studio? – rint Jan 15 '16 at 09:02
  • 1
    if you have experience with android programming, you can copy them and creating a project for that and then change the values or addreses and compile it, otherwise, it's not directly possible! – ʍѳђઽ૯ท Jan 15 '16 at 09:04