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