|
|
| | Ask HN: How do I get started with developing an app from scratch? | | 15 points by fakedang on Feb 29, 2020 | hide | past | favorite | 9 comments | | I'm looking to try my hand at building a basic shopping list app on the side, to familiarize myself with the platforms used, so that I can better understand the experience firsthand. I've currently decided to get started with Android Studio and App Inventor, and I've got a reasonable level of beginner experience from both in the past evening. Are there any good tutorials out there that can help me learn further? Also, are there any better tools than these two out there? Cheers |
|

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact
|
I start by listing the data I will need to track, wire-frame sketch some screens for entry and management. This will get me a picture of what data I will need, I want to do with it, and what tools I need to look for. (Since you are aiming for mobile, it might be good to imagine with a phone in your hand and think how would I get X entered on this device and then do Y?)
Next, I would get an initial database up and running sorting out my data elements into relatable tables as needed, then get a few sample records input as a test (maybe even straight from the DB command line - if the entry is going to be complex, at least you will have something to work with as you jump around getting stuff figured out.)
Next start work on better entry (if entry is cumbersome), also reporting, etc...
That's the start, you know what you want as the result... how to get the data where you need it and how to make value from it, one bit at a time, don't be afraid to re-do/refactor as you get things figured out.