I want to create an application that extracts text from .docx and .pptx files. Am using poi libraries. When I tried compiling it, it throws error of having too many methods.
In order to bypass this error (cause I need this poi libraries to effectively achieved this), after so many search on the internet, I observed that I can only do this by splitting the application into two applications. But the two applications will need to communicate among them. Especially, I would like to call some methods from one of the application in the second one. Can someone help me on how to achieve this?