i have developed three apps for different purpose. but now i need to include all three apps under one apps. is it possible . let me know any examples for how to do this.
You can compile your apps into libraries and then create a new project that references all three libraries. Note that the Main activity is not included when you compile a library.
i have converted my previous app as Library . and included the library in my current app . but i dont know how to use that library. please let me know any examples for that.
In the new project you should reference the libraries. Once referenced they behave exactly the same as if you added the modules (activities, classes, code modules and services) to the project.