I have Ant
project with many modules.
I'm trying to merge some modules into bigger ones and reduce their numbers.
Can I run android manifest merger
as a stand-alone application and merge manifests specified as arguments?
For example i have modules: A, B, C, D, E
I need to [A], [B] become [AB] module, and [C], [D], [E] to become [CDE]
I need this because I'm writing Python
script, which will help migrate to Gradle
. Script will scan directories, and create new project with all files, copied classes and resources. I would like it to be universal.