element-android/CONTRIBUTING.md

140 lines
5.9 KiB
Markdown
Raw Normal View History

2019-03-13 16:00:30 +00:00
# Contributing code to Matrix
2020-01-13 19:41:29 +00:00
Please read https://github.com/matrix-org/synapse/blob/master/CONTRIBUTING.md
2019-03-13 16:00:30 +00:00
Android support can be found in this [![Element Android Matrix room #element-android:matrix.org](https://img.shields.io/matrix/element-android:matrix.org.svg?label=%23element-android:matrix.org&logo=matrix&server_fqdn=matrix.org)](https://matrix.to/#/#element-android:matrix.org) room.
2019-03-13 16:00:30 +00:00
# Specific rules for Matrix Android projects
## Android Studio settings
Please set the "hard wrap" setting of Android Studio to 160 chars, this is the setting we use internally to format the source code (Menu `Settings/Editor/Code Style` then `Hard wrap at`).
Please ensure that your using the project formatting rules (which are in the project at .idea/codeStyles/), and format the file before committing them.
2019-03-13 16:00:30 +00:00
2020-04-30 11:10:53 +00:00
### Template
An Android Studio template has been added to the project to help creating all files needed when adding a new screen to the application. Fragment, ViewModel, Activity, etc.
To install the template (to be done only once):
- Go to folder `./tools/template`.
- Mac OSX: Run the script `./configure.sh`.
Linux: Run `ANDROID_STUDIO=/path/to/android-studio ./configure`
- e.g. `ANDROID_STUDIO=/usr/local/android-studio ./configure`
2020-04-30 11:10:53 +00:00
- Restart Android Studio.
To create a new screen:
- First create a new package in your code.
- Then right click on the package, and select `New/New Vector/RiotX Feature`.
- Follow the Wizard, especially replace `Main` by something more relevant to your feature.
- Click on `Finish`.
2021-02-21 18:19:46 +00:00
- Remaining steps are described as TODO in the generated files, or will be pointed out by the compiler, or at runtime :)
2020-04-30 11:10:53 +00:00
Note that if the templates are modified, the only things to do is to restart Android Studio for the change to take effect.
2019-03-13 16:00:30 +00:00
## Compilation
For now, the Matrix SDK and the Element application are in the same project. So there is no specific thing to do, this project should compile without any special action.
2019-03-13 16:00:30 +00:00
## I want to help translating Element
2019-03-13 16:00:30 +00:00
If you want to fix an issue with an English string, please submit a PR.
If you want to fix an issue in other languages, or add a missing translation, or even add a new language, please use [Weblate](https://translate.element.io/projects/element-android/).
2019-03-13 16:00:30 +00:00
## I want to submit a PR to fix an issue
Please check if a corresponding issue exists. If yes, please let us know in a comment that you're working on it.
If an issue does not exist yet, it may be relevant to open a new issue and let us know that you're implementing it.
### Kotlin
This project is full Kotlin. Please do not write Java classes.
### Changelog
2019-03-13 16:00:30 +00:00
Please create at least one file under ./newsfragment containing details about your change. Towncrier will be used when preparing the release.
Towncrier says to use the PR number for the filename, but the issue number is also fine.
Supported filename extensions are:
- ``.feature``: Signifying a new feature in Element Android or in the Matrix SDK.
- ``.bugfix``: Signifying a bug fix.
- ``.doc``: Signifying a documentation improvement.
- ``.removal``: Signifying a deprecation or removal of public API. Can be used to notifying about API change in the Matrix SDK
2021-05-20 14:55:30 +00:00
- ``.misc``: A ticket has been closed, but it is not of interest to users. Note that in this case, the content of the file will not be output, but just the issue/PR number.
See https://github.com/twisted/towncrier#news-fragments if you need more details.
2019-03-13 16:00:30 +00:00
### Code quality
Make sure the following commands execute without any error:
2019-10-11 15:12:51 +00:00
#### Internal tool
2019-10-11 15:18:54 +00:00
<pre>
./tools/check/check_code_quality.sh
</pre>
2019-03-13 16:00:30 +00:00
2019-10-11 15:12:51 +00:00
#### ktlint
2019-10-11 15:18:54 +00:00
<pre>
curl -sSLO https://github.com/pinterest/ktlint/releases/download/0.34.2/ktlint && chmod a+x ktlint
./ktlint --android --experimental -v
</pre>
2019-10-09 13:06:02 +00:00
Note that you can run
2019-10-11 15:18:54 +00:00
<pre>
./ktlint --android --experimental -v -F
</pre>
2019-10-11 15:12:51 +00:00
For ktlint to fix some detected errors for you (you still have to check and commit the fix of course)
2019-10-09 13:06:02 +00:00
2019-10-11 15:12:51 +00:00
#### lint
2019-10-09 13:06:02 +00:00
2019-10-11 15:18:54 +00:00
<pre>
./gradlew lintGplayRelease
./gradlew lintFdroidRelease
</pre>
2019-03-13 16:00:30 +00:00
### Unit tests
Make sure the following commands execute without any error:
2019-10-11 15:18:54 +00:00
<pre>
./gradlew testGplayReleaseUnitTest
</pre>
2019-03-13 16:00:30 +00:00
### Tests
Element is currently supported on Android Lollipop (API 21+): please test your change on an Android device (or Android emulator) running with API 21. Many issues can happen (including crashes) on older devices.
2019-03-13 16:00:30 +00:00
Also, if possible, please test your change on a real device. Testing on Android emulator may not be sufficient.
You should consider adding Unit tests with your PR, and also integration tests (AndroidTest). Please refer to [this document](./docs/integration_tests.md) to install and run the integration test environment.
2019-03-13 16:00:30 +00:00
### Internationalisation
When adding new string resources, please only add new entries in file `value/strings.xml`. Translations will be added later by the community of translators with a specific tool named [Weblate](https://translate.riot.im/projects/riot-android/).
Do not hesitate to use plurals when appropriate.
2019-10-31 10:11:03 +00:00
### Accessibility
Please consider accessibility as an important point. As a minimum requirement, in layout XML files please use attributes such as `android:contentDescription` and `android:importantForAccessibility`, and test with a screen reader if it's working well. You can add new string resources, dedicated to accessibility, in this case, please prefix theirs id with `a11y_`.
2019-03-13 16:00:30 +00:00
### Layout
When adding or editing layouts, make sure the layout will render correctly if device uses a RTL (Right To Left) language.
You can check this in the layout editor preview by selecting any RTL language (ex: Arabic).
Also please check that the colors are ok for all the current themes of Element. Please use `?attr` instead of `@color` to reference colors in the layout. You can check this in the layout editor preview by selecting all the main themes (`AppTheme.Status`, `AppTheme.Dark`, etc.).
2019-03-13 16:00:30 +00:00
### Authors
Feel free to add an entry in file AUTHORS.md
## Thanks
Thanks for contributing to Matrix projects!