diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8900c416a..d9f57bbbb 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -9,7 +9,7 @@ GnuCash Android is built by people like you! Please [join us](https://github.com ## Code Contributions * Contributions are submitted, reviewed, and accepted using Github pull requests. [Read this article](https://help.github.com/articles/using-pull-requests) for some details. We use the _Fork and Pull_ model, as described there. * You can maintain your stable installation of GnuCash and test with another installation. -The two instances of GnuCash Android will live side-by-side on your device and not affect each other. You can install the development version by executing `gradle installDD` inside the root project directory +The two instances of GnuCash Android will live side-by-side on your device and not affect each other. You can install the development version by executing `gradlew installDevelopmentDebug` inside the root project directory * The latest changes are in the `develop` branch. * Always rebase develop before working on a fix or issuing a pull request * The master branch contains only stable releases. @@ -23,7 +23,7 @@ The two instances of GnuCash Android will live side-by-side on your device and n * Make a new branch for every feature you're working on. * Try to make clean commits that are easily readable (including descriptive commit messages!) * Test before you push make sure all test pass on your machine. - * Unit tests can be run with `gradle test` + * Unit tests can be run with `gradle test` or (`gradlew test` on Windows) * UI tests can be run with `gradle spoonDD`. This will run the tests on all connected devices/emulators. * Make small pull requests that are easy to review but which also add value.