Source control of phone source code?

I will work in a team making phone applications for the first time.

For a super simple template application shared by a team of 3, I have to include the entire project (i.e. all directories):

app --merges --platforms --plugins --www 

If the user has problems with conflicts that arise during the build of iOS (and I assume the build is android), should I add the platforms directory to .gitignore? Do I correctly assume that all assemblies should be performed by the user and not rely on someone else that is in the phone book, built-in versions of the application?

+4
source share
1 answer

In my project, we only fix the www folder and the Windows batch file (we are developing on Windows), which is responsible for automatically installing each plug-in that the application needs.

When adding a new plugin, we will add a new entry to this file.

When a new developer wants to create his own development environment with the application, he creates a new project and imports the www folder. After that, it launches the local build command, and then runs the custom plugin file.

0
source

Source: https://habr.com/ru/post/1501366/


All Articles