Some parts of developing the app

Last time I was writing about me and the app. Now I am writing about development of the app. Making a good app will always take time and I have been using a lot of time for the development. There are some common mistakes in development and one of them you shouldn’t try implement whole app without feedback. So, I have done many iterations and our group’s testers Jere and Atte have tested them. Our first goal for the app was that we can make posts and view them. Achieving it didn’t take long using Firebase. I recommend trying Firebase with a project for everyone because you can try things so fast without implementing the whole backend. In Firestore you can make collections that hold documents. Documents can hold a many kind of data. I think that the best way of saving posts is to make a post class in your code so you can easily save posts and load them. Many would think that then you should add data structure in the post class for saving the comments in post, but that isn’t the c...