diff options
author | Vincent Bourgmayer <vincent.bourgmayer@e.email> | 2023-05-11 12:45:56 +0000 |
---|---|---|
committer | Vincent Bourgmayer <vincent.bourgmayer@e.email> | 2023-05-11 12:45:56 +0000 |
commit | 739a89101d632d0f6633cf7d4eaf911768216c93 (patch) | |
tree | fd693a6c44e11d7990a13fcace7e3039e372fd12 /README.md | |
parent | 5a432ecde520ee039786848296e5227571404158 (diff) |
move dependencies from build.gradle (top) to settings.gradle to follow same...
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -67,7 +67,7 @@ To check for any codestyle related error, `./gradlew spotlessCheck`. Use `./grad ### Setting up pre-commit hooks To strictly enforce the code quality, this project has a pre-commit hook which is triggered everytime before you commit any changes (only applies to *.kt, *.gradle, *.md and *.gitignore). You must setup the pre-commit hook before doing any changes to the project. For that, this project has a script which can executed as follows: ```bash -hooks/pre-commit +./hooks/pre-commit ``` ## Build dependencies @@ -90,7 +90,6 @@ then run the build as usual This won't include advanced privacy, you still need to build the app. - This app requires different modules that must be built indivually and pushed to a local maven repository or our gitlab modules must be build and deployed in the following order: @@ -105,9 +104,11 @@ modules must be build and deployed in the following order: ## Build If you'd like to build AdvancedPrivacy locally, you should be able to just clone and build with no issues. -For building from CLI, you can execute this command: +For building from CLI, you can execute use `./gradlew assemble<Flavor><Debug|Release>` command: + +Example for eOs debug version ```bash -./gradlew build +./gradlew assembleEDebug ``` ## How to use AdvancedPrivacy apk |