DroidFu and GreenDroid are great open source projects which I would like to utilize in my Android project. However, I ran into a problem when trying to get them work at the same time.
Both of these libraries require that the application derives from their base application class, DroidFuApplication and GDApplication, respectively. Naturally, I thought I would have to modify the code by making another one of them extend the other. Is this the case?
How can I most painlessly import both of these libraries and use them in my project? How would you approach this problem? Would you just merge the best (or needed) parts of both of the frameworks? Or, is there a simpler way?