Requirements for polishing
Polishing any game defines the quality of development. So, it is absolutely necessary to polish any game before releasing it in the market. A polished game performs far better than unpolished games in terms of visibility, smoothness, and user experience.
Polishing Android games covers all the three development components of a game:
- Development polishing
- Art polishing
- Design polishing
Development polishing
Polishing the engineering or the technical aspect of the game development process to improve smooth playability of the game is the main target of development polishing. This section includes programming optimization, memory optimization, and stripping unnecessary code blocks to avoid any extra processing.
Development polishing can be further split into three phases:
- Memory optimization
- Performance optimization
- Portability
Memory optimization
We have already discussed memory optimization in detail in the previous chapter. Memory optimization ensures that the game runs with...