revanced-manager/docs/4_building.md

32 lines
652 B
Markdown
Raw Normal View History

# 🛠️ Building from source
This page will guide you through building ReVanced Manager from source.
1. Setup the Flutter environment for your [platform](https://docs.flutter.dev/get-started/install)
2. Clone the repository
```sh
git clone https://github.com/revanced/revanced-manager.git && cd revanced-manager
```
3. Get dependencies
```sh
flutter pub get
```
4. Delete conflicting outputs
```sh
2023-11-11 11:14:54 +01:00
dart run build_runner build --delete-conflicting-outputs
```
> [!Note]
> Must be run every time you sync your local repository with the remote repository.
5. Build the APK
```sh
flutter build apk
```