Check-UP: Course Curriculum Checklist is an Android application made for and by students of the University of the Philippines Diliman. The application requires the user's registration year and course. It then uses the corresponding curriculum to track the subjects that a student has already taken and has yet to take. It will also display the student's academic standing and give suggestions on which subjects to take for the next semester. Statistics such as General Weighted Average (GWA), units left, years left, P.E.'s left, and more will help the student succeed in school.
Find out more information on our Wiki. Thanks for checking out our project.
-
Set-up your git installation. See the tutorial at https://help.github.com/articles/set-up-git
Make sure to configure your username and email
-
Generate an SSH key for your current machine. See the tutorial at https://help.github.com/articles/generating-ssh-keys
Make sure you add your SSH key to your GitHub Account Settings
-
In the terminal, change to your desired parent directory for the project directory
cd <directory>
-
Clone the project
git clone [email protected]:AITI-Philippines/C3.git
-
Change to the project directory
cd C3
-
Add files to git's list of tracked files
-
Add a new, untracked, file to git's list of tracked files
git add <file>
-
Add multiple untracked files to git's list of tracked files, by adding the entire directory contents
git add .
Hint: The
.
indicates the current directory
-
-
Commit your changes to the history of your repository, and include a useful message
git commit -m "<message>"
-
Update the remote repository in GitHub
git push
-
Commit add your updates to the history of your repository, and include a useful message
git commit -a -m "<message>"
Hint: The
-a
flag tells git to automatically add all modified already-tracked files -
Update the remote repository in GitHub
git push
-
Update the repository with data from the remote repository
git pull origin master
-
Install the Android SDK and the Eclipse Plugin. See the tutorial at http://developer.android.com/sdk/installing/index.html
-
In Eclipse, import the Check-UP Android project
File > Import > Android > Existing Android Code Into Workspace
In the following screen, specify the Android application Root Directory
<path>\C3\Check-UP
Select All projects, and continue
-
Run the application on a real device or an emulator. See the tutorial at http://developer.android.com/training/basics/firstapp/running-app.html
- Bisais, Apryl Rose ([email protected])
- Javier, Jewel Lex ([email protected])
- Razon, Justine Arnon ([email protected])
- Santi, Nathan Lemuel ([email protected])