Good day!
I am interested in such a question, there is a compiled Android project (.apk), the task is - since the release of apk is done for different servers, you need to change some settings in the XML file Settings.xml but without physically recompiling the project through Eclipse.
A partial solution is the following: a script is written that decompilit .apk using apktool changes the values in Settings.XML and then compile everything again via apktool.
However, as practice has shown, this apk assembled in this way is not installed on a real android device. a simple message is issued - "Application not installed"
Googling the internet found the following - http://developer.android.com/tools/publishing/app-signing.html#cert
The .apk file collected via apktool needs to be signed, however, when trying to generate this same signature through the command
ant release
I get an error - build.xml not found
Brief clarification Reconfiguration and reassembly will be performed on another computer where eclipse is not installed. You need to do something like reassembler. Naturally, some things, such as android-sdk, will still have to be put on that computer :)
Thanks in advance for your help!