summaryrefslogtreecommitdiffhomepage
path: root/android/app/build.gradle
AgeCommit message (Collapse)AuthorFilesLines
2022-01-05Migrade gradle scripts to kotlin/ktsAlbin1-181/+0
2022-01-05Apply gradle plugins declarativelyAlbin1-4/+6
2022-01-05Prepare gradle scripts for kotlin migrationAlbin1-66/+66
2022-01-04Fix invalid path in Android release buildAlbin1-1/+1
Fixes the invalid path to 'keystore.properties' introduced in the previous split of the android/root project and app module.
2021-12-20Add Android dependency auditAlbin1-0/+8
Adds the OWASP Dependency-Check tool to the project to detect potentially vulnerable dependencies. Gradle is configured to skip the lintClassPath configuration, which relies on many dependencies that has been flagged to have CVEs, as it's related to the lint tooling rather than the project's compilation class path. The alternative would be to suppress specific CVEs, however that could potentially result in suppressed CVEs in project compilation class path.
2021-12-16Split Android project and app moduleAlbin1-0/+171
The purpose of this is to: * Comply better with the default Android project structure (see https://developer.android.com/studio/build). * Avoid conflicts between project and app dependencies and plugins.