Rapidly building a mobile application
To confidently build a mobile app, you would typically need to spend about 5-30 weeks learning prerequisite material.
Thankfully, modern technologies allow you to rapidly setup, build, and deploy mobile apps with very abstract understanding. We will teach and demonstrate these high level basics.
However, you need to go in knowing that you will have a million questions, and you'll have to seek many answers yourself. Even if this course was stacked with 100 tutors, the nature of web and mobile development is VERY self-driven.
Regardless, when you have these questions, you should (in order):
If you have an ongoing interest in web technologies, you can consider enrolling in COMP6080 during your degree.
React JS
React Native
HTML
CSS
Javascript
Web Technologies
Native Technologies
Java + Android SDK
Swift + Apple SDK
React JS
Expo.io
React Native
Single codebase
Separate codebase
We can explore basic expo apps here.
Key things to take away from this include:
Nodejs:
An interpreter for javascript, it's like python3 but for javascript and not python
NPM (Node Package Manager) / Yarn:
Package managers for javascript projects, it's like pip3 but for javascript and not python
Once you're comfortable playing around on the Snack web interface, you're going to find it much easier and comfortable to program on your own machine (or on the CSE machine via vlab).
Let's go through an example together!!
In DESN2000 we have set up a GIT repository for each of your groups. Each group member is a moderator, and can push/pull from this repository.
To setup an expo project in your repository, simply
git clone gitlab@gitlab.cse.unsw.edu.au:DESN2000/20T2/groupName.git myProjectFolder
expo init myProjectFolder
git add --all
git commit -am "Initial commit"
git push origin master