Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an AndroidManifest.xml, and I need to convert it to binary and place it by hand in the APK. After that, I can do a manual sign and align.

Longer explanation: I'm having trouble [again] with the familiar tools used in APK re-engineering, and I'm bulding the APK by hand with tools that don't crash.

What java tool is out there for converting AndroidManifest XML to binary? AAPT does not look like its helpful, and Google is returning lots of irrelevant results. Android includes sdklib.jar, but I'm having trouble calling it (and it might not perform 'just' the XML -> binary conversion).

Jeff

share|improve this question
1  
This pretty much sounds like a nightmare, but have you tried checking in the bin folder in the project? – Mozoby Sep 12 '12 at 21:49
Mozoby - it is :) I don't know why I torture myself..... – noloader Sep 12 '12 at 21:50
Supposedly aapt does this, but you have to repackage the entire apk file, which means you have to have access to the uncompiled resources if they're referenced in the AndroidManifest.xml. using apktool I've decompiled it and got aapt to see all the resources. It tries to put everything together but in processing the AndroidManifest, it falls apart complaining that the datatypes are wrong. This seems to be related to the api version (which affects what is expected within the manifest). And that's where I'm stuck.. – Erikest Oct 16 '12 at 22:30

1 Answer

If you have not seen it yet, there is android-apktool, which is quite helpful for these kinds of things. I have successfully used them before in repacking APKs by hand after modifying their binaries.

You can also look for the apkbuilder tool which is in my android-sdk-linux/tools/ directory. (It is, however, deprecated.)

share|improve this answer
Hi Kristopher. Thanks. APKTOOL is broken for what I am doing (its the familiar tool I was referring to). Both But.all's version; ibotpeaches version; and Mutiltools by the other fellow. APKTOOL has died on my last 3 BlackBox tests. Its not very robust. – noloader Sep 12 '12 at 22:12
Hm, that's funny. We use the following to pack up APKs: java -jar apktool.jar b -f #{@dir} #{unsigned}; java -jar signapk.jar platform.x509.pem platform.pk8 unsigned.apk unaligned.apk; zipalign 4 unaligned.apk to_name – Kristopher Micinski Sep 12 '12 at 22:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.