-
Notifications
You must be signed in to change notification settings - Fork 2
Installation
Things to add:
- google maps API key: show how to generate one and where to store it: After installation section
- Add build tools corrupted issue fix: stack overflow link: add to installation
- Show what directory to open in android studio: add to installation
- Show what emulator is best to install/show how to install emulator: Pixel 5 API version S 31: add a separate section
-
Download Android Studio Here. This is where we write the code. spam click next on the setup page unless you would like to change the default settings. Once the setup wizard page opens, click next twice, then make sure the UI theme is darcula and click next a third time and click finish. This may take a while to install completely.
-
Set up WSL Here. This can be annoying to do, so good luck!
-
install git.
a. first run this line in ubuntu.
apt-get install git
Ubuntu might tell you to usesudo apt-get install git
instead.
Next, sign into www.github.com, or sign up if you do not have an account. Make sure to remember the username you give, this will be important for later.b. go back to the terminal and run this command, but replace "your_username" with your own name (keep the quotation marks):
git config –global user.name "your_username"
and this command, replacing "your_emailid" with your own email address (keep the quotation marks):
git config –global user.email "your_emailid"
these commands will link your username and email to your computer, so github knows who authored your commits. -
clone the shuttle-tracker-android repository. Run the command
git clone https://github.com/wtg/Shuttle-Tracker-Android.git
The code should be found in the folder titled Shuttle-Tracker-Android. -
Open android studio again, click open and navigate to the shuttle tracker project. You are now able to start working it I think
-
TODO: add guide for compiling and setting up virtual android phone