mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-05-01 14:34:24 +02:00
25 lines
808 B
Markdown
25 lines
808 B
Markdown
# 💼 Preparing a developer environment
|
|
In order to compile ReVanced Manager, certain requirements must be met.
|
|
|
|
## 📝 Prerequisites
|
|
* Kotlin IDE such as [Android Studio](https://developer.android.com/studio)
|
|
* Understanding of [Android](https://android.com) OS and [Kotlin](https://kotlinlang.org/) language
|
|
* At least Java Development Kit version 17 of any vendors
|
|
|
|
## 🏃 Prepare the environment
|
|
1. Clone the repository
|
|
```sh
|
|
git clone https://github.com/ReVanced/revanced-manager.git && cd revanced-manager
|
|
```
|
|
<!-- This assume that you can use Maven repository -->
|
|
2. Build the APK
|
|
Release variant:
|
|
```sh
|
|
./gradlew assembleRelease -Psign
|
|
```
|
|
|
|
## ⏭️ What's next
|
|
The next page will introduce you to basic overview of ReVanced Manager
|
|
|
|
Continue: [💁 Overview](1_overview.md)
|