Heal-O-Chat is a Social Media Application for people who have been feeling less motivated in life or are losing hope. This platform allows users to chat with people and share their thoughts and feelings with each other and thereby let go of stress, anxiety, and depression that they've been feeling for long.
- Features
- Tech Used
- Requirements
- Discord Channel
- Getting Started
- Screenshorts of the app
- Download app from the link
- Project Maintainer
- Check your Njack Leaderboard
- You can create your account in app using your google account.
- You can see post made by users.
- You can like, report posts in the app.
- You can add your own post.
- You can see public cure profiles.
- You can text and call users.
- You can see posts made by the user in user profile.
- You can send text messages and images to other users.
- You can block user from chat.
- You can Track Your activity of the timeline.
- You can deactivate you account.
- You can make profile private.
- You can revoke call from other users.
- You can edit your profile.
- You can add profile picture to the app.
- Android
- Java
- Firebase RealTime Database
- Firebase FireStore
- Firebase Authentication
- Google Analytics
- RecyclerView
- Material I/O
- Android Version 5.0 and above
- compileSdkVersion 29
- minSdkVersion 21
GitHub repository URLs will reference both the username associated with the owner of the repository, as well as the repository name. For example, plazzy99 is the owner of this repository, so the GitHub URL for this project is:
https://github.com/plazzy99/heal-o-chat
When you’re on the main page for the repository, you’ll see a button to "Star" and “Fork” the repository on your upper right-hand side of the page, underneath your user icon.
To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window.
This URL will be similar to the URL above, except now it will end with .git. In the example above, the URL will look like this:
https://github.com/plazzy99/Heal-O-Chat.git
You can alternatively copy the URL by using the green “Clone or download” button from your repository page that you just forked from the original repository page. Once you click the button, you’ll be able to copy the URL by clicking the binder button next to the URL:
Once we have the URL, we’re ready to clone the repository. To do this, we’ll combine the git clone command with the repository URL from the command line in a terminal window:
git clone https://github.com/plazzy99/Heal-O-Chat.git
Once the project is opened create a new branch and checkout in it where you can make the changes in the code.
git branch new-branch
git checkout new-branch
Click on Git branch in the bottom-right corner in Android Studio and create a new branch from there and checkout to it.
git add .
or git add -A
git commit -m <Your-commit-message>
git push --set-upstream origin new-branch
While working on a project alongside other contributors, it is important for you to keep your local repository up-to-date with the project as you don’t want to make a pull request for code that will cause conflicts. To keep your local copy of the code base updated, you’ll need to sync changes.
You’ll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. you’ll have to do this with the git remote add command.
git remote add upstream https://github.com/plazzy99/Heal-O-Chat.git
In this example, // upstream // is the shortname we have supplied for the remote repository since in terms of Git, “upstream” refers to the repository that you cloned from. If you want to add a remote pointer to the repository of a collaborator, you may want to provide that collaborator’s username or a shortened nickname for the shortname.
Once you have configured a remote that references the upstream and original repository on GitHub, you are ready to sync your fork of the repository to keep it up-to-date.
To sync your fork, from the directory of your local repository in a terminal window, you’ll have to use the // git fetch // command to fetch the branches along with their respective commits from the upstream repository. Since you used the shortname “upstream” to refer to the upstream repository, you’ll have to pass that to the command:
git fetch upstream
git checkout master
Now merge any changes that were made in the original repository’s master branch, that you will access through your local upstream/master branch, with your local master branch:
git merge upstream/master
Navigate to your forked repository, and press the “New pull request” button on your left-hand side of the page.
Download both the files and then click .apk file
Vatsal Kesarwani |
Need help? Feel free to contact me @ [email protected]