diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-05-31 13:12:15 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-31 13:12:15 +0530 |
commit | 523f2afc5389ab0bf69792d6f823a32e86f92512 (patch) | |
tree | 672a873d8e75e310839f255c2b3a39d3f070eff6 /app/build.gradle | |
parent | 81c4960dd68d8e127aa3e7d5e0acd932fef9765e (diff) |
build: Upgrade all dependencies (#803)
* build: upgrade all dependencies
We've accumulated a fat backlog here that's gonna need some heavy testing
* build: adjust for WhatTheStack upgrade
This is now automatically initialized
* build: downgrade security-crypto
* build: upgrade to Gradle 6.4
* idea: sync from AS 4.1.x
* build: bump AGP to 4.0.0
* build: disable Jetifier
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Co-authored-by: Fabian Henneke <FabianHenneke@users.noreply.github.com>
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 2e203705..7be17e71 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -22,7 +22,7 @@ android { } } - viewBinding.enabled = true + buildFeatures.viewBinding = true defaultConfig { applicationId 'dev.msfjarvis.aps' @@ -107,12 +107,13 @@ dependencies { implementation deps.third_party.ssh_auth implementation deps.third_party.timber implementation deps.third_party.timberkt - implementation deps.third_party.whatthestack if (isSnapshot()) { implementation deps.third_party.leakcanary + implementation deps.third_party.whatthestack } else { debugImplementation deps.third_party.leakcanary + debugImplementation deps.third_party.whatthestack } // Testing-only dependencies |