WeBuy
is an android group project for the Douglas College's CSIS 4495 Applied Research Project Course.- The app is a specialized group-buying platform designed to help local businesses and neighborhoods tackle rising living costs through collective purchasing. By simplifying the process of ordering and managing stock, the app allows customers to purchase in-stock items or participate in group orders, streamlining supply management and fostering economic efficiency.
- Language: Java
- Database: Firebase
- Steps:
- Create a new branch: Use
git branch branch_name
, andgit checkout branch_name
- Make modifications in your branch: Use
git add .
to stage the changes, thengit commit -m "YOUR SUBBMIT MESSAGE"
to commit the changes. - Before pushing your work, please note the following:
a. Ensure that your changes are functioning properly.
b. Pull the latest version from the main branch:
- Switch to the main branch using
git checkout main
. - Pull the latest changes using
git pull
. - Switch back to your branch using
git checkout branch_name
. - Merge the changes from the main branch into your branch using
git merge main
.
- Switch to the main branch using
- Push your changes to GitHub: Use
git push origin branch_name
- Create a pull request to allow others to review your code.
- Android Studio Prerequisite: Ensure you have Android Studio installed on your computer. It provides the necessary tools and environment for building Android apps.(download here)
- In Android Studio, click the Run button (the green triangle icon) and choose your target device (Android API 31 or above)
- Enable Unknown Sources: On your phone, go to Settings > Security (or a similar path depending on your device). Locate the option to allow installing apps from unknown sources (usually under "Device Administration") and enable it. Warning: This should only be done for trusted sources like your own development projects, as it can increase security risks.
- Transfer the APK: Copy the APK file from your computer to your phone's storage using a file transfer method like USB mass storage or cloud storage.
- Install the APK: Use a file manager app on your phone to locate the APK and tap on it. Follow any prompts to complete the installation.