diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-11-06 19:41:15 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-11-06 19:41:15 +0530 |
commit | b2d352e3ea671e84cc4f356a49786d1d3b2eaef6 (patch) | |
tree | e33d23a825d3eaa81bc2ce0bd6a621894a36adcc /versions.gradle | |
parent | 3fcf242c0770eb043b85d9d0a16e408780cf7527 (diff) |
Revert back to Groovy DSL
The Kotlin DSL's API is extremely terrible and makes the simplest tasks annoying. It also introduces a very noticeable build overhead that I'd rather not have.
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'versions.gradle')
-rw-r--r-- | versions.gradle | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/versions.gradle b/versions.gradle new file mode 100644 index 00000000..9670d26b --- /dev/null +++ b/versions.gradle @@ -0,0 +1,41 @@ +/* + * Copyright © 2014-2019 The Android Password Store Authors. All Rights Reserved. + * SPDX-License-Identifier: GPL-3.0-only + */ +ext { + versions = [ + // Project + minSdk: 21, + targetSdk: 29, + compileSdk: 29, + versionCode: 10303, + versionName: '1.3.3', + buildTools: '29.0.2', + + // Plugins + gradlePlugin: '3.5.1', + kotlin: '1.3.50', + spotless: '3.25.0', + + // AndroidX + annotation: '1.1.0', + appcompat: '1.1.0', + biometric: '1.0.0-rc01', + cardview: '1.0.0', + constraintLayout: '2.0.0-beta3', + coreKtx: '1.2.0-beta01', + documentfile: '1.0.1', + fragmentKtx: '1.2.0-beta01', + material: '1.2.0-alpha01', + preference: '1.1.0', + recyclerview: '1.0.0', + + // Third party + commons_io: '2.5', + commons_codec: '1.13', + jgit: '3.7.1.201504261725-r', + jsch: '0.1.55', + openpgp: '12.0', + sshauth: '1.0' + ] +} |