Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.55 KB

CONTRIBUTING.md

File metadata and controls

44 lines (27 loc) · 1.55 KB

Contributing guidelines

Contributions are very welcome. RunnerUp is open source software licensed under the GPL.

Development

Code style

Code should follow the Android Code Style Guidelines.

Tests

Unfortunately there are no tests in this project currently.

Previewing changes

Changes can be previewed using an emulator.

IDE

You may wish to consider Eclipse, Android Studio or NetBeans IDE.

To build the app using Android Studio, see this guide.

Making changes

  1. Fork it ( https://github.com/jonasoreland/runnerup/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Where to start

How to succeed in getting your Pull Request (PR) merged

  1. Each PR should contain one logical change
  2. Each PR should either contain 100% new code/features or be small enough so that it can be review quite quickly
  3. If a PR gets to big, it should be split into several PRs, where e.g the first ones are refactorings needed later
  4. Be sure only to modify lines you actually change. Keep reformattings and similar in separate PR.