I have a library module with a dummy manifest (which is an exact copy of my application manifest but with package name changed) which i used in the past (eclipse) to test the library without an application module. Now in android studio i can test and debug with breakpoints the library launching it with my application module, so the dummy manifest of the library is not neccesary anymore.
Can i delete the library manifest before release compile? Manifest merger is giving me a lot of problems, duplicating a lot of things on my manifest, so if it is possible whould be better for me to delete the library module.
It is safe to delete it or this will give me problems in the future?
Thanks