mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-30 05:54:26 +02:00
26 lines
842 B
Markdown
26 lines
842 B
Markdown
# 🧑💻 Developing for ReVanced Manager
|
|
|
|
ReVanced Manager is developed on Kotlin using [Jetpack Compose](https://developer.android.com/compose), here are some tips to help you get started.
|
|
|
|
## Code style
|
|
|
|
The styling is based on https://kotlinlang.org/docs/coding-conventions.html
|
|
|
|
## Commit
|
|
|
|
At ReVanced, we adopt a naming convention for commit called [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) so for example when you're adding a new feature you must add `feat: ` before the description of your commit.
|
|
|
|
## Building
|
|
|
|
To build ReVanced Manager, simply hit build button on your IDE or run:
|
|
|
|
```sh
|
|
./gradlew assembleDebug
|
|
```
|
|
|
|
## ⏭️ What's next
|
|
|
|
The next page will guide you through developing for ReVanced Manager.
|
|
|
|
Continue: [🎉 Submitting your Pull Request](2_submitting.md)
|