Skip to content

Commit

Permalink
Bumping gradle once more
Browse files Browse the repository at this point in the history
- Also disabled checking the linting module when running
dependency check to clean up output. This was done because
a report here: https://stackoverflow.com/a/57035277 mentions
these critical vulnerabilities are found only in the build tools
and are thus not dangerous for the app.
  • Loading branch information
Scatchell committed Mar 7, 2021
1 parent 1f2f550 commit 833f56e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
/captures
.externalNativeBuild
.idea/
talisman_reports/
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

### Running locally

- Running with intellij?

```bash
./gradlew build
```
Expand Down
5 changes: 5 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ dependencyCheck {
analyzers {
assemblyEnabled=false
}
skipConfigurations += 'lintClassPath'
}

subprojects {
task allDeps(type: DependencyReportTask) {}
}

android {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'org.owasp:dependency-check-gradle:6.0.3'

// NOTE: Do not place your application dependencies here; they belong
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Feb 03 20:52:43 GMT 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 833f56e

Please sign in to comment.