Contributors are more than welcome. How can you contribute?
We want our app to be as stable as possible thus your bug reports are immensely valuable. File GitHub Issues for anything that is unexpectedly broken.
- App version
- Device model
- Android version
- Steps to reproduce the bug
- Expected behavior
- Actual behavior (a screenshot and/or log file may be helpful)
We have labeled tasks you can help with as and . Just pick up an issue that you're interested in and start coding. If you have a great idea you really want to implement, start by logging an issue for us. We'll let you know if it fits with our product direction and then you can start development. When you're ready open a Pull Request with a description of your changes.
See Git Essentials for a simple bugfix workflow.
You don't have to be a programmer if you want to translate this application in your own language or improve existing translations. You can translate SoundRecorder using POEditor - a collaborative translation platform.
Testing is imperative to the health of the project. There's a configured CI pipeline (Travis CI) intended for running unit tests and instrumented tests on every commit to the repository, but unfortunately, there're very few tests at the moment.
Please follow standard guidelines if you want to contribute a test:
- Android Developers - Test apps on Android
- Android Studio - Test your app
- GitHub - Android testing samples
Workflows can vary, but here is a very simple workflow for contributing a bug fix:
-
Fork the repository.
-
Clone the fork:
$ git clone [email protected]:YOUR_USERNAME/SoundRecorder.git $ git remote add upstream https://github.com/naXa777/SoundRecorder.git
Read why do you need to Configure a remote if you're interested.
-
Prepare a feature branch:
$ git checkout -b issue-123-keyword master
-
Do development and then commit your changes:
$ git commit -m "fix #123 - Description of what I had changed" $ git push
A quick note: See Chris Beams' guide to writing good commit messages - How to Write a Git Commit Message.
-
Open a pull request.
Read Creating a pull request from a fork for details.