mirror of
https://github.com/revanced/revanced-cli.git
synced 2024-11-04 02:48:53 +01:00
27 lines
484 B
Markdown
27 lines
484 B
Markdown
# 🔨️ Building
|
|
|
|
Build ReVanced CLI from source.
|
|
|
|
## 📝 Requirements
|
|
|
|
- Java Development Kit 11 (Azul Zulu JRE or OpenJDK)
|
|
|
|
## 🏗️ Building
|
|
|
|
To build ReVanced CLI, follow these steps:
|
|
|
|
1. Clone the repository:
|
|
|
|
```bash
|
|
git clone git@github.com:ReVanced/revanced-cli.git
|
|
cd revanced-cli
|
|
```
|
|
|
|
2. Build the project:
|
|
|
|
```bash
|
|
./gradlew build
|
|
```
|
|
|
|
After the build succeeds, the built JAR file will be located at `build/libs/revanced-cli-<version>-all.jar`.
|