Reputation: 169
We are working with a team of multiple developers in a MobileFirst project. The issue is that we have only one APK for a multi-app development.
What is the best approach?
Is there any example of how to divide the code in a project like this?
Upvotes: 0
Views: 74
Reputation: 2118
The best option will be to work on a single project, single app and move your project under some kind of version control (git, svn, cvs, rtc or any version control system). This will reduces headaches later when trying to manually merge code into a single app.
Since you are working on a single project in a team you may need to stub/mock some of the dependencies that other people are working on.
For more info on which files you should check into version control check Integrating with source control systems in IBM Knowledge Center
Upvotes: 4