From 61a025de4daa9cb54e717590a37418852d40b88c Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Sat, 9 Dec 2023 11:47:26 +0700 Subject: [PATCH] docs: correct styling issue --- docs/4_building.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/4_building.md b/docs/4_building.md index fec5b7e9..29168acc 100644 --- a/docs/4_building.md +++ b/docs/4_building.md @@ -2,29 +2,31 @@ 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) +1\. Setup the Flutter environment for your [platform](https://docs.flutter.dev/get-started/install) -2. Clone the repository +2\. Clone the repository ```sh git clone https://github.com/revanced/revanced-manager.git && cd revanced-manager ``` -3. Get dependencies +3\. Get dependencies ```sh flutter pub get ``` -4. Delete conflicting outputs +4\. Delete conflicting outputs + +> [!TIP] +> Must be run every time you sync your local repository with the remote repository. ```sh 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 + +5\. Build the APK ```sh flutter build apk