-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,701
  • 6
  • 40
  • 54
rint
  • 245
  • 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
  • 993
  • 8
  • 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,177
  • 7
  • 51
  • 106
  • 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