0

How to recompile decompiled Android Application files? To be specific, I downloaded these files from here https://code.google.com/p/ubuntu-countdown-widget/ and made the necessary changes by replacing the images, target date, etc.

How to recompile all of these into an apk once again, without installing Eclipse and pasting the code all over again.

makes
  • 6,438
  • 3
  • 40
  • 58
Netizen110
  • 1,644
  • 4
  • 18
  • 21

1 Answers1

1

In a command-line, call

$<your SDK root dir>/tools/android update project -p .
ant (you can append 'debug' here)

The apk will be output in ./bin

rockeye
  • 2,765
  • 2
  • 30
  • 44
  • I don't know from where & how to access the terminal/command-line. I have Eclipse & Android SDK installed. Could you guide me what to do ? Thanks in Advance. – Netizen110 Dec 21 '11 at 17:33