All Projects → anitab-org → Powerup Android

anitab-org / Powerup Android

Licence: gpl-2.0
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.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Powerup Android

Phaser Ce Npm Webpack Typescript Starter Project
Project to get you started with your Phaser-CE (using the npm module) game using Typescript and Webpack for building! No hassle asset management, Google Web Font loader, live server, development vs distribution build pipeline, Electron packaging for desktop builds, and more...
Stars: ✭ 414 (+263.16%)
Mutual labels:  game, mobile
Brainpowerapp
A visual memory training game, a mobile game made with Xamarin for both Android and IOS .
Stars: ✭ 17 (-85.09%)
Mutual labels:  game, mobile
Lgame
A cross-platform Java game Engine (Framework) , support JavaFX / Android / IOS / HTML5 / Linux / MAC / Windows
Stars: ✭ 467 (+309.65%)
Mutual labels:  game, mobile
Awesome Python Applications
💿 Free software that works great, and also happens to be open-source Python.
Stars: ✭ 13,275 (+11544.74%)
Mutual labels:  game, education
Craft
A simple Minecraft clone written in C using modern OpenGL (shaders).
Stars: ✭ 8,957 (+7757.02%)
Mutual labels:  sqlite, game
Deceive
🎩 Appear offline for the League of Legends client.
Stars: ✭ 233 (+104.39%)
Mutual labels:  game, mobile
Chronophore
Desktop app for tracking student sign-ins in a tutoring center.
Stars: ✭ 6 (-94.74%)
Mutual labels:  sqlite, education
Braincup
Train your math skills, memory and focus.
Stars: ✭ 137 (+20.18%)
Mutual labels:  game, education
Sycophant
Numerous Ninjas: Beta stage mobile game written in Unity
Stars: ✭ 64 (-43.86%)
Mutual labels:  game, mobile
Korea Startups
🌟 국내 스타트업 목록 및 설명 🌟
Stars: ✭ 63 (-44.74%)
Mutual labels:  game, education
Fxgl
Stars: ✭ 2,378 (+1985.96%)
Mutual labels:  game, mobile
Selectstarsql
An interactive SQL book
Stars: ✭ 92 (-19.3%)
Mutual labels:  sqlite, education
Picodeploy
Deploy Pico-8 Carts as Standalone Applications on Desktop 🖥️(Electron) and Mobile 📱(Ionic) 📦👾
Stars: ✭ 153 (+34.21%)
Mutual labels:  game, mobile
Yampa
Functional Reactive Programming domain-specific language embedded in Haskell, for programming efficient hybrid (mixed discrete-time and continuous-time) systems.
Stars: ✭ 294 (+157.89%)
Mutual labels:  game, mobile
Panda Run
A panda parkour game, based on Cocos2d-js, running on Android / iOS
Stars: ✭ 145 (+27.19%)
Mutual labels:  game, mobile
Processing Android
Processing mode and core library to create Android apps with Processing
Stars: ✭ 643 (+464.04%)
Mutual labels:  education, mobile
Rapid Router Unity
An Implementation of the Rapid Router game in Unity for devices
Stars: ✭ 12 (-89.47%)
Mutual labels:  game, education
Wcdb
WCDB is a cross-platform database framework developed by WeChat.
Stars: ✭ 9,264 (+8026.32%)
Mutual labels:  sqlite, mobile
Corona
Solar2D Game Engine main repository (ex Corona SDK)
Stars: ✭ 1,679 (+1372.81%)
Mutual labels:  game, mobile
Bible Database
Bible databases as XML, JSON, SQL & SQLITE3 Database format for various languages. Developers can download it freely for their development works. Freely received, freely give.
Stars: ✭ 111 (-2.63%)
Mutual labels:  sqlite

Travis

PowerUp - Android

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!

Setup for Developers

  1. Make sure you have downloaded the latest version of Android Studio. It works on Linux, Windows and Mac. Download the correct version for your OS.
  2. Go to the project repo and fork it by clicking "Fork"
  3. If you are working on Windows, download Git Bash for Windows to get a full Unix bash with Git functionality
  4. Clone the repo to your desktop git clone https://github.com/YOUR_USERNAME/powerup-android.git
  5. Open the project with Android Studio
  6. Fetch the latest version of code from branch "develop".
  7. Build a 'Powerup' application which is inside the base directory.

Configure remotes

When 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:

  1. Set the upstream:

    git remote add upstream https://github.com/systers/powerup-android.git

  2. 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)

  1. 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.

Contributing and developing a feature

  1. Make sure you are in the develop branch git checkout develop
  2. Create a new branch with a meaningful name git checkout -b branch_name
  3. Develop your feature on Android Studio and run it using the emulator or connecting your own Android device
  4. Clean your project from Android Studio Build/Clean project
  5. Add the files you changed git add file_name (avoid using git add .)
  6. Commit your changes git commit -m "Message briefly explaining the feature"
  7. Keep one commit per feature. If you forgot to add changes, you can edit the previous commit git commit --amend
  8. Push to your repo git push origin branch-name
  9. Go into the Github repo and create a pull request explaining your changes
  10. If you are requested to make changes, edit your commit using git commit --amend, push again and the pull request will edit automatically
  11. You will need to add a message on the pull request notifying your changes to your reviewer

Contributing Guidelines

Click here to find the contributing guidelines for the project and follow them before sending a contribution.

Documentation of PowerUp (Android)

Here's the link to the official documentation: Visit Documentation!

Coding Guidelines

  1. Don't use magic numbers or hard-coded strings. Put them in dimens.xml or strings.xml
  2. Class names should be in CamelCase. Name activities with names including Activity so it's easier to know what they are.
  3. Include spaces between parameters when you call a method for example: Intent(MainActivity.this, GameActivity.class).
  4. Give relevant names to buttons and other resources.
  5. Use @id instead of @+id when referring to resources that have been already created in xml files.

Contact Us

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].