Loading repository data…
Loading repository data…
anitab-org / repository
PowerUp is an educational choose-your-own-adventure game that utilizes a users uploaded curriculum to empower pre-adolescents to take charge of their reproductive health. This is the Android version of the game.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
PowerUp is a female empowerment educational mobile game app that will allow young girls to learn about reproductive health and self-esteem by navigating the life of their avatar!
git clone https://github.com/YOUR_USERNAME/powerup-android.gitWhen a repository is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repository it was forked from. To keep track of the original repository, you should add another remote named upstream:
Set the upstream:
git remote add upstream https://github.com/systers/powerup-android.git
Run git remote -v to check the status, you should see something like the following:
origin https://github.com/YOUR_USERNAME/powerup-android.git (fetch)
origin https://github.com/YOUR_USERNAME/powerup-android.git (push)
upstream https://github.com/systers/powerup-android.git (fetch)
upstream https://github.com/systers/powerup-android.git (push)
To update your local copy with remote changes, run the following:
git fetch upstream
git rebase upstream/develop
This will give you an exact copy of the current remote, make sure you don't have any local changes.
git checkout developgit checkout -b branch_nameBuild/Clean projectgit add file_name (avoid using git add .)git commit -m "Message briefly explaining the feature"git commit --amendgit push origin branch-namegit commit --amend, push again and the pull request will edit automaticallyClick here to find the contributing guidelines for the project and follow them before sending a contribution.
Here's the link to the official documentation: Visit Documentation!
Intent(MainActivity.this, GameActivity.class).@id instead of @+id when referring to resources that have been already created in xml files.You can reach our community and its maintainers on AnitaB.org Open Source Zulip
If you are interested in contributing to the PowerUp application, we have a dedicated stream for this project where you can ask questions and interact with the community. Join with us on #powerup stream on Zulip.