Yuito-app-android/CONTRIBUTING.md

58 lines
3.8 KiB
Markdown
Raw Permalink Normal View History

2017-04-26 09:30:30 +02:00
# Contributing
2023-02-14 21:09:06 +01:00
Thanks for your interest in contributing to Tusky! Here are some informations to help you get started.
2017-04-26 09:30:30 +02:00
2023-02-14 21:09:06 +01:00
If you have any questions, don't hesitate to open an issue or join our [development chat on Matrix](https://riot.im/app/#/room/#Tusky:matrix.org).
2023-02-14 21:09:06 +01:00
## Contributing translations
2023-02-14 21:09:06 +01:00
Translations are managed on our [Weblate](https://weblate.tusky.app/projects/tusky/tusky/). You can create an account and translate texts through the interface, no coding knowledge required.
To add a new language, click on the 'Start a new translation' button on at the bottom of the page.
2023-02-14 21:09:06 +01:00
- Use gender-neutral language
- Address users informally (e.g. in German "du" and never "Sie")
2017-04-26 09:30:30 +02:00
2023-02-14 21:09:06 +01:00
## Contributing code
2017-04-26 09:30:30 +02:00
2023-02-14 21:09:06 +01:00
### Prerequisites
You should have a general understanding of Android development and Git.
### Architecture
We try to follow the [Guide to app architecture](https://developer.android.com/topic/architecture).
2017-04-26 09:30:30 +02:00
2018-02-15 21:51:37 +01:00
### Kotlin
2023-02-14 21:09:06 +01:00
Tusky was originally written in Java, but is in the process of migrating to Kotlin. All new code must be written in Kotlin.
2023-09-08 11:18:10 +02:00
We try to follow the [Kotlin Style Guide](https://developer.android.com/kotlin/style-guide) and format the code according to the default [ktlint codestyle](https://github.com/pinterest/ktlint).
You can check the codestyle by running `./gradlew ktlintCheck lint`. This will fail if you have any errors, and produces a detailed report which also lists warnings.
We intentionally have very few hard linting errors, so that new contributors can focus on what they want to achieve instead of fighting the linter.
2018-02-15 21:51:37 +01:00
2023-02-14 21:09:06 +01:00
### Text
All English text that will be visible to users must be put in `app/src/main/res/values/strings.xml` so it is translateable into other languages.
Try to keep texts friendly and concise.
If there is untranslatable text that you don't want to keep as a string constant in Kotlin code, you can use the string resource file `app/src/main/res/values/donottranslate.xml`.
### Viewbinding
We use [Viewbinding](https://developer.android.com/topic/libraries/view-binding) to reference views. No contribution using another mechanism will be accepted.
There are useful extensions in `src/main/java/com/keylesspalace/tusky/util/ViewExtensions.kt` that make working with viewbinding easier.
2017-04-26 09:30:30 +02:00
### Visuals
2023-02-14 21:09:06 +01:00
There are three themes in the app, so any visual changes should be checked with each of them to ensure they look appropriate no matter which theme is selected. Usually, you can use existing color attributes like `?attr/colorPrimary` and `?attr/textColorSecondary`.
All icons are from the Material iconset, find new icons [here](https://fonts.google.com/icons) (Google fonts) or [here](https://fonts.google.com/icons) (community contributions).
### Accessibility
We try to make Tusky as accessible as possible for as many people as possible. Please make sure that all touch targets are at least 48dpx48dp in size, Text has sufficient contrast and images or icons have a image description. See [this guide](https://developer.android.com/guide/topics/ui/accessibility/apps) for more information.
### Supported servers
Tusky is primarily a Mastodon client and aims to always support the newest Mastodon version. Other platforms implementing the Mastodon API, e.g. Akkoma, GoToSocial or Pixelfed should also work with Tusky, but no special effort is made to support their quirks or additional features.
### Payment Policy
Our payment policy may be viewed [here](https://github.com/tuskyapp/Tusky/blob/develop/doc/PaymentPolicy.md).
2023-02-14 21:09:06 +01:00
## Troubleshooting / FAQ
- Tusky should be built with the newest version of Android Studio.
2023-02-14 21:09:06 +01:00
- Tusky comes with two sets of build variants, "blue" and "green", which can be installed simultaneously and are distinguished by the colors of their icons. Green is intended for local development and testing, whereas blue is for releases.
## Resources
- [Mastodon API documentation](https://docs.joinmastodon.org/api/)