Skip to content

Commit

Permalink
docs: Fix build command & improve clarity (#47)
Browse files Browse the repository at this point in the history
Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de>
  • Loading branch information
LilithSilver and oSumAtrIX authored Jul 27, 2024
1 parent 115476c commit 78b6f32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/revanced-development/1_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,19 @@ A certain development environment is suggested to allow for streamlined developm

```bash
for project in */; do
cd "$project" && ./gradlew build
cd "$project" && ./gradlew build && cd ..
done
```

> [!NOTE]
> If the build fails due to authentication, you may need to authenticate to GitHub Packages.
> Create a PAT with the scope `read:packages` [here](https://github.com/settings/tokens/new?scopes=read:packages&description=ReVanced) and add your token to ~/.gradle/gradle.properties.
> Create a personal access tokens with the scope `read:packages` [here](https://github.com/settings/tokens/new?scopes=read:packages&description=ReVanced) and add your token to ~/.gradle/gradle.properties. Create the file if it does not exist.
>
> Example `gradle.properties` file:
>
> ```properties
> gpr.user = user
> gpr.key = key
> gpr.user = <GitHub username>
> gpr.key = <Personal access token>
> ```

## ⚙️ Setup your workspace in IntelliJ IDEA
Expand Down

0 comments on commit 78b6f32

Please sign in to comment.