Java – how to work comfortably in large (Android) projects?
I created an app for Android some time ago and uploaded it to Google play I'm happy because users like my application and request updates and improvements
My project is getting bigger and bigger, and it has reached the point where I am afraid of change because I may destroy something else I also find myself sometimes thinking about all parts of a program at the same time To tell you the truth, it makes me a little nervous I like doing small projects and I'm happy to write code I also want to relax when doing bigger things
By the way, I use Android studio
So how can you easily work on a large project without considering all parts of the project?
thank you.
Solution
Dear user 3054843,
>It varies from developer to developer > & project to project,
Large projects are not always difficult to handle and manage. Sometimes they may be covered up in less time and effort
Sometimes, due to the large amount of R & D, it may be difficult to deal with small projects with unique and additional functions
Anyway, at least keep the following points with you to deal with the project effectively:
>Divide the complete project requirements into modules. > Create packages by function or by structure (packaging by function is a better way). > Try using separate classes and methods to avoid code complexity and ease of understanding > if you need any large functionality, use the open source library according to your requirements (if available) > do everything step by step to solve the problem instead of skipping. > Work hard
thank you