revanced-manager/docs/developers/0_preparation.md
2023-10-23 15:16:34 +07:00

27 lines
732 B
Markdown

# 💼 Preparing a development environment
In order to compile ReVanced Manager, certain requirements must be met.
## 📝 Prerequisites
* Kotlin IDE such as [Android Studio](https://developer.android.com/studio)
* Knowledge of [Android](https://android.com) app development, and the [Kotlin](https://kotlinlang.org/) language.
* At least JDK 17 of any vendors
## 🏃 Prepare the environment
1. Clone the repository
```sh
git clone https://github.com/ReVanced/revanced-manager.git && cd revanced-manager
```
2. Build the application
```sh
gradlew assembleRelease
```
## ⏭️ What's next
The next page will introduce you to the basic overview of ReVanced Manager
Continue: [💁 Overview](1_overview.md)