From the development image you can start how many containers you want. In each container, you can develop one application totally separate to another. The code for the application resides externally to the container, but it is accessible by the container to compile it and run it inside the container. The result of this phase will be an application that will run in your browser. At the end you can create a *.apk file and test it on your mobile phone:
Now that we have the infrastructure built, let's get some code from GitHub and start a container with it:
mkdir ~/PROJECTS cd ~/PREOJECTS git clone https://github.com/bcatalin/Homy4 ...