6.9 KiB
👨💻 Setup a development environment for ReVanced
A certain development environment is suggested to allow for streamlined development on ReVanced.
🚀 Get started
-
Clone repositories
mkdir revanced && cd revanced repositories=( "revanced-cli" "revanced-patches" "revanced-patcher" # Only if you want to work on ReVanced Patcher "revanced-library" # Only if you want to work on ReVanced Library ) for repository in "${repositories[@]}" ; do git clone -b dev --single-branch --depth 1 https://github.com/revanced/$repository done -
Build
Ensure, that all projects build successfully. Run the following command in the
revanceddirectory:for project in */; do cd "$project" && ./gradlew build && cd .. done
Note
If the build fails due to authentication, you may need to authenticate to GitHub Packages. Create a personal access tokens with the scope
read:packageshere and add your token to ~/.gradle/gradle.properties. Create the file if it does not exist.Example
gradle.propertiesfile:gpr.user = <GitHub username> gpr.key = <Personal access token>
⚙️ Setting up your workspace in IntelliJ IDEA
Follow these steps to configure your development environment for the revanced-cli project in IntelliJ IDEA:
-
Open the
revanced-cliproject:- Open the
revanced-cliproject in IntelliJ IDEA - Ensure you are using the correct JDK as specified in 💼 Prerequisites
- Open the
-
Import projects:
Import the projects you cloned as modules into the
revanced-cliproject:- Open the Project Structure dialog by pressing Ctrl + Alt + Shift + S
- Navigate to the Modules section
- Import each additional project as a module under the
revanced-cliproject
-
Synchronize Gradle projects:
- Click on the Sync All Gradle Projects button in the Gradle tool window
- Verify that all Gradle projects are imported successfully without errors
-
Configure the Run Configuration for
revanced-cli:-
Locate the
app.revanced.cli.command.MainCommandKtclass in therevanced-cliproject -
Click the green Play button next to the
mainfunction. This will generate a new run configuration -
Edit the run configuration as follows:
-
Program arguments: Specify the arguments you would use to run ReVanced CLI from the command line. Example:
patch -p revanced-patches\patches\build\libs\patches-<version>.rvp binaries\some.apk -i # Install the patched APK to a device connected via ADB after patching -
Working directory: Set to the parent directory of the
revanced-cliproject:$ProjectFileDir$/.. -
Before launch: Add a Gradle task to build
revanced-patches:patches:- Click the + button and select Run Gradle Task
- Choose the
revanced-patches:patchesproject and add thebuildtask
-
-
Warning
The RVP file names in
revanced-patcheschange with each release.
Ensure you update the path to the patches in the run configuration program arguments whenever you pull new commits.
🥼 Working on revanced-patcher and revanced-library (Optional)
-
Import as modules: Import
revanced-patcherandrevanced-libraryas modules in therevanced-cliproject -
Update versions:
- In their respective
gradle.propertiesfiles, bump the version to a unique value that is not already published in any other repository
- In their respective
-
Add the local Maven repository: Add
mavenLocal()to therepositoriesblock of the projects that need to use the locally published versions -
Update dependencies: Update the dependency version in the
libs.versions.tomlfile of the dependent projects to match the version ingradle.properties -
Configure module dependencies:
- Go to Project Structure
- Select the
mainmodule of your project - Under the Dependencies tab, remove the existing dependencies to
revanced-patcherorrevanced-library - Add new dependencies by clicking
+> Module Dependency - Select
revanced-patcher.mainorrevanced-library.jvmMain
-
Set up local publication:
- Add Before launch tasks in the
revanced-clirun configuration - Use the
publishToMavenLocalGradle task to publish therevanced-patcherandrevanced-libraryprojects to your local Maven repository
- Add Before launch tasks in the
✅ Verify your setup
Now that you have set up your development environment, verify that everything works as intended:
-
Run ReVanced CLI:
- Run the
revanced-cliproject with the run configuration you created - Confirm that the CLI starts and executes the command you specified in the program arguments
- Run the
-
Edit the projects:
Make a small change in the projects and confirm that the changes are reflected, when you run the project
-
Test debugging:
- Set a breakpoint in the projects
- Run the project in debug mode and confirm that the breakpoint is hit
- Continue and let ReVanced CLI exit
⚠️ Troubleshoot your development environment
- Projects fail to build: Ensure that you have the correct JDK version installed. Check the
JAVA_HOMEenvironment variable and the JDK version in IntelliJ IDEA. Make sure you are authenticated to GitHub Packages if the build fails due to authentication issues - Run configuration fails: Check the program arguments and working directory in the run configuration. Ensure that the paths are correct and up to date with the latest changes in the repositories
- Breakpoints are not hit: Ensure that you are running the project in debug mode and that the paths are correct in the run configuration
- Dependencies are not resolved: Make sure, the dependencies are published to the local Maven repository,
mavenLocal()is present in the repositories block and the correct version of the dependencies is specified in thelibs.versions.tomlfile - Changes in projects are not reflected: Ensure, that after making changes in the projects, the
revanced-patchesproject is built, and the run configuration is updated with the latest path to the patches file. Also, ensure that the libraries are published to the local Maven repository and the dependencies are correctly set up in the Project Structure dialog. Ensure, the correct version of the dependencies is specified in thelibs.versions.tomlfile
📜 Project specific documentations
To learn more about the individual projects, refer to their respective documentations: