33 lines
1.1 KiB
Markdown
33 lines
1.1 KiB
Markdown
# How to Become a Contributor and Submit Your Own Code
|
|
|
|
If you want to contribute to this repository, follow these steps:
|
|
|
|
1. **Fork the Repository**
|
|
|
|
Unselect `copy master branch only` if you want to base other branches.
|
|
|
|
2. **Configure Your IDE (IDEA or Android Studio)**
|
|
- Navigate to `Settings` -> `Editor` -> `Code Style` -> `Kotlin` (Choose Project Schema) -> `Imports`.
|
|
- Set the following options:
|
|
- Top-Level Symbols: Use single name import.
|
|
- Java Statics and Enum Members: Use single name import.
|
|
- Packages to Use Import with "*": none.
|
|
|
|
3. **Create a New Branch**
|
|
|
|
Create a new branch from the `master` branch or checkout existing branches.
|
|
|
|
4. **Coding in Your Branch**
|
|
|
|
Start coding in your branch and make the necessary changes.
|
|
|
|
5. **Push Your Code**
|
|
|
|
Once your code is ready, push it to your branch.
|
|
|
|
6. **Make a Pull Request**
|
|
|
|
If your staged code is complete and error-free, you can create a pull request to the `MASTER` branch.
|
|
|
|
Following these guidelines will help streamline the contribution process.
|
|
Thank you for your contribution! |