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