PART I.IV
Version Control
Git Basic Review
01
Git Basic Review
02
Clean Code Rules
03
Coding best practices (Clean Codes) are a set of informal rules that the software development community has learned over time which can help improve the quality of software.
Rules for Specific Language - Language C/C++
04
For Example:
When you have an if-else statement nested in another if statement, always put braces around the if-else.
Right !
Wrong
05
Code is Art.
06
Examples with Gradle
07
Continuous Integration
08
build
unit tests
integration testing
deploy
Continuous Integration
Continuous Integration for Android
09
Git Workflow with CI
v1.0
v2.0
v3.0
master branch
develop branch
release
feature branch
10
Practice
11